-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
60 lines (58 loc) · 2.21 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[workspace]
resolver = "2"
members = [
"cala-ledger",
"cala-ledger-outbox-client",
"cala-ledger-core-types",
"cala-server",
"cala-tracing",
"cala-nodejs",
"cala-cel-parser",
"cala-cel-interpreter",
"examples/rust",
]
[workspace.dependencies]
anyhow = "1.0.89"
async-graphql = { version = "7.0.7", default-features = false, features = ["dataloader", "tracing", "chrono", "playground"] }
async-graphql-axum = "7.0.7"
async-trait = "0.1.83"
axum = { version = "0.7.7", features = ["macros"] }
axum-extra = { version = "0.9.4", default-features = false, features = ["tracing", "typed-header"] }
base64 = { version = "0.22.1" }
cached = { version = "0.51", features = ["async"] }
chrono = { version = "0.4.31", features = ["clock", "serde"], default-features = false }
clap = { version = "4.5", features = ["derive", "env", "cargo"] }
derive_builder = "0.20.1"
sqlx = { version = "0.8", features = [ "runtime-tokio-rustls", "postgres", "rust_decimal", "uuid", "chrono", "json" ] }
thiserror = "1.0.64"
uuid = { version = "1.10", features = ["serde", "v4"] }
tracing = "0.1.40"
tracing-opentelemetry = "0.25.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }
opentelemetry = { version = "0.24.0" }
opentelemetry_sdk = { version = "0.24.1", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.17.0", features = ["http-proto", "reqwest-client"] }
opentelemetry-http = "0.13"
opentelemetry-semantic-conventions = "0.16.0"
tokio = { version = "1.40", features = ["rt-multi-thread", "macros"] }
tokio-stream = { version = "0.1.16", features = ["sync"] }
serde = { version = "1.0.210", features = ["derive"] }
serde_yaml = "0.9.32"
serde_json = "1.0.128"
serde_with = "3.11.0"
tonic = "0.12.3"
tonic-build = { version = "0.12.3", features = ["prost"] }
tonic-health = "0.12"
prost = "0.13"
prost-wkt-types = { version = "0.6", features = ["vendored-protoc"]}
protobuf-src = { version = "1.1.0" }
futures = "0.3.29"
http = "0.2.9"
lazy_static = "1.5.0"
lalrpop-util = { version = "0.20", features = ["lexer"] }
lalrpop = { version = "0.20", features = ["lexer"] }
rust_decimal_macros = "1.36.0"
rust_decimal = "1.36.0"
rusty-money = { version = "0.4", features = ["iso", "crypto"] }
[profile.release]
lto = true