Cargo.toml 469 B

12345678910111213141516
  1. [package]
  2. name = "flowy-ai"
  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. reqwest = { version = "0.11", features = ["json"] }
  8. serde = { version = "1.0", features = ["derive"] }
  9. serde_json = "1.0"
  10. anyhow = "1.0.75"
  11. lib-infra = { path = "../../../shared-lib/lib-infra" }
  12. async-openai = "0.14.2"
  13. tokio = { version = "1.12", features = ["rt", "sync"] }
  14. dotenv = "0.15.0"