2023-09-19 02:37:37 +00:00
|
|
|
[package]
|
|
|
|
name = "flowy-ai"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
reqwest = { version = "0.11", features = ["json"] }
|
2023-11-12 13:18:27 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
anyhow.workspace = true
|
2023-12-30 23:29:40 +00:00
|
|
|
lib-infra = { workspace = true }
|
2023-09-21 04:41:52 +00:00
|
|
|
async-openai = "0.14.2"
|
2023-11-12 13:18:27 +00:00
|
|
|
tokio = { workspace = true, features = ["rt", "sync"] }
|
2023-12-31 02:23:43 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
dotenv = "0.15.0"
|