-
Notifications
You must be signed in to change notification settings - Fork 65
/
Cargo.toml
32 lines (28 loc) · 898 Bytes
/
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
[package]
name = "inspect-server"
edition.workspace = true
license.workspace = true
version.workspace = true
[[bin]]
name = "cartesi-rollups-inspect-server"
path = "src/main.rs"
[dependencies]
grpc-interfaces = { path = "../grpc-interfaces" }
http-health-check = { path = "../http-health-check" }
log = { path = "../log" }
actix-cors.workspace = true
actix-web.workspace = true
clap = { workspace = true, features = ["derive", "env"] }
hex.workspace = true
serde = { workspace = true, features = ["rc", "derive"] }
snafu.workspace = true
tokio = { workspace = true, features = ["macros", "time", "rt-multi-thread"] }
toml.workspace = true
tonic.workspace = true
tracing.workspace = true
tracing-actix-web.workspace = true
uuid = { workspace = true, features = ["v4"] }
[dev-dependencies]
futures.workspace = true
reqwest = { workspace = true, features = ["json"] }
serial_test.workspace = true