generated from axodotdev/oss-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
35 lines (28 loc) · 1.17 KB
/
Cargo.toml
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
30
31
32
33
34
35
[package]
name = "gazenot"
description = "Gaze Not Into The Abyss, Lest You Become A Release Engineer"
version = "0.3.3"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/axodotdev/gazenot"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["client_lib"]
client_lib = ["axoasset", "url", "tracing", "tokio", "camino", "axoasset", "backon"]
tls-native-roots = ["axoasset/tls-native-roots"]
[dependencies]
# things needed for even the faux-schema mode (--no-default-features)
serde = { version = "1.0.189", features = ["derive"] }
serde_json = "1.0.107"
thiserror = "2.0.0"
miette = { version = "7.2.0" }
schemars = "0.8.11"
# things needed for the full client
axoasset = { version = "1.0.1", features = ["json-serde", "remote"], optional = true }
url = { version = "2.5.0", features = ["serde"], optional = true }
tracing = { version = "0.1.36", features = ["log"], optional = true }
tokio = { version = "1.12.0", features = ["full"], optional = true }
camino = { version = "1.1.6", optional = true }
backon = { version = "1.2.0", optional = true }
[lints.clippy]
result_large_err = "allow"