Cargo.toml 606 B

123456789101112131415161718
  1. [package]
  2. name = "kuberian"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. candle-core = { git = "https://github.com/huggingface/candle.git" }
  8. candle-nn = { git = "https://github.com/huggingface/candle.git" }
  9. tokenizers = { version = "0.13.3", default-features = true }
  10. anyhow = { version = "1", features = ["backtrace"] }
  11. serde = { version = "1.0.171", features = ["derive"] }
  12. serde_json = "1.0.99"
  13. tracing = "0.1.37"
  14. hf-hub = "0.2.0"
  15. clap = { version = "4.2.4", features = ["derive"] }
  16. actix-web = "4"