-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathCargo.toml
36 lines (30 loc) · 900 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
33
34
35
36
[package]
name = "graphql-server"
edition.workspace = true
license.workspace = true
version.workspace = true
[[bin]]
name = "cartesi-rollups-graphql-server"
path = "src/main.rs"
[[bin]]
name = "generate-schema"
path = "src/schema/generate_schema.rs"
[dependencies]
http-health-check = { path = "../http-health-check" }
log = { path = "../log" }
rollups-data = { path = "../data" }
actix-cors.workspace = true
actix-web.workspace = true
clap = { workspace = true, features = ["derive", "env"] }
hex.workspace = true
juniper.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
snafu.workspace = true
tokio = { workspace = true, features = ["macros", "time", "rt-multi-thread"] }
tracing.workspace = true
[dev-dependencies]
test-fixtures = { path = "../test-fixtures" }
awc.workspace = true
serial_test.workspace = true
testcontainers.workspace = true