-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (48 loc) · 2.03 KB
/
Cargo.toml
File metadata and controls
54 lines (48 loc) · 2.03 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "numtracker"
# This version is *not* used for the built container image. It is set during the
# CI build process so that the version always matches the latest git tag.
version = "0.0.0"
edition = "2021"
license = "Apache-2.0"
rust-version = "1.86"
[lints.clippy]
unwrap_used = "deny"
[features]
default = ["client"]
client = ["dep:dirs", "dep:graphql_client", "dep:openidconnect", "dep:toml"]
[dependencies]
async-graphql = { version = "7.0.17", features = ["tracing"] }
async-graphql-axum = "7.0.17"
axum = "0.8.4"
axum-extra = { version = "0.12.0", features = ["typed-header"] }
chrono = "0.4.41"
clap = { version = "4.5.38", features = ["cargo", "derive", "env", "string", "wrap_help"] }
derive_more = { version = "2.0.1", features = ["error", "display", "from", "deref"] }
futures = "0.3.31"
opentelemetry = "0.31.0"
opentelemetry-otlp = { version = "0.31.0", features = ["grpc-tonic"] }
opentelemetry-semantic-conventions = "0.31.0"
opentelemetry_sdk = { version = "0.31.0", features = ["rt-tokio"] }
reqwest = { version = "0.12.15", features = ["json", "rustls-tls"], default-features = false }
serde = { version = "1.0.219", features = ["derive"] }
sqlx = { version = "0.8.5", features = ["runtime-tokio", "sqlite"] }
tokio = { version = "1.45.0", features = ["full"] }
tracing = "0.1.41"
tracing-opentelemetry = "0.32.0"
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
url = "2.5.4"
# Dependencies required if building with client subcommand
dirs = { version = "6.0.0", optional = true }
graphql_client = { version = "0.16.0", optional = true }
openidconnect = { version = "4.0.0", optional = true }
toml = { version = "1.0.0", optional = true }
[dev-dependencies]
assert_matches = "1.5.0"
async-std = { version = "1.13.1", features = ["attributes"], default-features = false }
httpmock = { version = "0.8.0", default-features = false }
rstest = "0.26.1"
serde_json = { version = "1.0.140", features = ["preserve_order"] }
tempfile = "3.20.0"
[build-dependencies]
built = { version = "0.8.0", features = ["git2", "chrono"] }