-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 701 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "gemini"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
[dependencies]
anyhow = "1.0.101"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.149"
utoipa = { version = "5.3", optional = true }
schemars = { version = "1.2.1", optional = true }
reqwest = { version = "0.13.2", features = ["json", "stream"] }
async-trait = "0.1"
deser-incomplete = "0.1.2"
futures = "0.3"
async-stream = "0.3.6"
bytes = "1.0"
tracing = "0.1"
[dev-dependencies]
tokio = { version = "1.49", features = ["full"] }
reqwest = { version = "0.13.2", features = ["json"] }
[features]
default = []
openapi = ["utoipa"]
json = ["schemars"]