maekawatoshiki / altius

Small ONNX inference runtime written in Rust
MIT License
91 stars 6 forks source link

Publish to crates.io #6

Closed mpetri closed 1 year ago

mpetri commented 1 year ago

Hello!

was looking to play with this as part of a larger rust program. Is it possible to publish the core to crates.io so I can import the inference part of this and build my own tooling around it?

maekawatoshiki commented 1 year ago

@mpetri It is possible to publish altius to crates.io, but I'm afraid to do that since it's still in the early stage of development.

How about importing altius from GitHub? Cargo.toml like:

altius-core = { git = "https://github.com/maekawatoshiki/altius.git" }
altius-session = { git = "https://github.com/maekawatoshiki/altius.git", features = ["blis"] }