-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 886 Bytes
/
Cargo.toml
File metadata and controls
38 lines (34 loc) · 886 Bytes
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
[package]
name = "tx-sender"
authors.workspace = true
edition.workspace = true
license.workspace = true
publish.workspace = true
version.workspace = true
[dependencies]
connector-utils.workspace = true
fhevm_gateway_bindings.workspace = true
actix-web.workspace = true
alloy.workspace = true
anyhow.workspace = true
prometheus.workspace = true
serde.workspace = true
sqlx.workspace = true
thiserror.workspace = true
tokio.workspace = true
tokio-util.workspace = true
tracing.workspace = true
tracing-opentelemetry.workspace = true
[dev-dependencies]
bc2wrap.workspace = true
connector-utils = { workspace = true, features = ["tests"] }
rstest.workspace = true
serial_test.workspace = true
serde_json.workspace = true
tempfile.workspace = true
tokio-stream.workspace = true
toml.workspace = true
tracing-test.workspace = true
[[bin]]
name = "tx-sender"
path = "src/bin/tx_sender.rs"