-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (52 loc) · 1.81 KB
/
Cargo.toml
File metadata and controls
65 lines (52 loc) · 1.81 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
55
56
57
58
59
60
61
62
63
64
65
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
# Required by crane for workspace-only Cargo.toml (no root package)
# Individual packages are built via pname override in flake.nix
[workspace.metadata.crane]
name = "wormhole"
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.dependencies]
# workspace members
wormhole-core = { path = "crates/wormhole-core" }
wormhole-cache = { path = "crates/wormhole-cache" }
wormhole-proto-schema = { path = "crates/wormhole-proto-schema" }
wormhole-gateway = { path = "crates/wormhole-gateway" }
wormhole-shortener = { path = "crates/wormhole-shortener" }
wormhole-redirector = { path = "crates/wormhole-redirector" }
wormhole-storage = { path = "crates/wormhole-storage" }
wormhole-tinyflake = { path = "crates/wormhole-tinyflake" }
wormhole-generator = { path = "crates/wormhole-generator" }
wormhole-test-infra = { path = "crates/wormhole-test-infra" }
wormhole-telemetry = { path = "crates/wormhole-telemetry" }
# async runtime
tokio = { version = "1", features = ["full"] }
# gRPC
tonic = { version = "0.14.3" }
prost = { version = "0.14.3" }
prost-types = { version = "0.14.3" }
tonic-prost = { version = "0.14.3" }
tonic-prost-build = { version = "0.14.3" }
tonic-health = { version = "0.14.5" }
# Tracing
tracing = { version = "0.1.41" }
tracing-subscriber = { version = "0.3.22", features = ["json", "env-filter"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
# Error handling
thiserror = { version = "2.0" }
anyhow = { version = "1.0" }
# Time
jiff = { version = "0.2.19", features = ["serde"] }
# Async trait
async-trait = "0.1.89"
# Utils
typed-builder = { version = "0.23.2" }
bs58 = { version = "0.5.1" }
# Redis
redis = { version = "1.0.3", features = ["aio", "tokio-comp"] }
# CLI parsing
clap = { version = "4.5.31" }