2024-04-01 00:57:57 +03:00
|
|
|
[package]
|
|
|
|
name = "anthropic"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2024-04-01 12:16:16 +03:00
|
|
|
publish = false
|
|
|
|
license = "AGPL-3.0-or-later"
|
2024-04-01 00:57:57 +03:00
|
|
|
|
2024-05-14 16:57:52 +03:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
schemars = ["dep:schemars"]
|
|
|
|
|
2024-04-18 22:53:48 +03:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2024-04-01 00:57:57 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/anthropic.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow.workspace = true
|
|
|
|
futures.workspace = true
|
2024-05-11 00:50:20 +03:00
|
|
|
http.workspace = true
|
2024-05-14 16:57:52 +03:00
|
|
|
isahc.workspace = true
|
|
|
|
schemars = { workspace = true, optional = true }
|
2024-04-01 00:57:57 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-05-30 13:36:07 +03:00
|
|
|
strum.workspace = true
|
2024-04-01 00:57:57 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tokio.workspace = true
|