forked from astriaorg/astria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
109 lines (106 loc) · 3.2 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[workspace]
exclude = ["tools/protobuf-compiler", "tools/solidity-compiler"]
members = [
"crates/astria-bridge-contracts",
"crates/astria-bridge-withdrawer",
"crates/astria-build-info",
"crates/astria-cli",
"crates/astria-composer",
"crates/astria-conductor",
"crates/astria-config",
"crates/astria-core",
"crates/astria-eyre",
"crates/astria-grpc-mock",
"crates/astria-grpc-mock-test",
"crates/astria-grpc-mock-test-codegen",
"crates/astria-merkle",
"crates/astria-sequencer",
"crates/astria-sequencer-client",
"crates/astria-sequencer-relayer",
"crates/astria-sequencer-utils",
"crates/astria-telemetry",
"crates/astria-test-utils",
"lint/*",
]
# Specify default members so that cargo invocations in github actions will
# not act on lints
default-members = [
"crates/astria-bridge-contracts",
"crates/astria-bridge-withdrawer",
"crates/astria-build-info",
"crates/astria-cli",
"crates/astria-composer",
"crates/astria-conductor",
"crates/astria-config",
"crates/astria-core",
"crates/astria-grpc-mock",
"crates/astria-grpc-mock-test",
"crates/astria-grpc-mock-test-codegen",
"crates/astria-merkle",
"crates/astria-sequencer",
"crates/astria-sequencer-client",
"crates/astria-sequencer-relayer",
"crates/astria-sequencer-utils",
"crates/astria-telemetry",
"crates/astria-test-utils",
]
resolver = "2"
[workspace.metadata.dylint]
libraries = [{ path = "lint/tracing_debug_field" }]
[workspace.dependencies]
async-trait = "0.1.52"
axum = "0.6.16"
base64 = "0.21"
base64-serde = "0.7.0"
bytes = "1"
celestia-tendermint = "0.32.1"
celestia-types = "0.1.1"
clap = "4.5.4"
const_format = "0.2.32"
divan = "0.1.14"
ethers = { version = "2.0.11", default-features = false }
futures = "0.3"
hex = "0.4"
hex-literal = "0.4.1"
humantime = "2.1.0"
hyper = "0.14"
ibc-types = "0.12"
indexmap = "2.1.0"
insta = "1.36.1"
itertools = "0.12.1"
itoa = "1.0.10"
jsonrpsee = { version = "0.20" }
once_cell = "1.17.1"
pbjson-types = "0.6"
# Note that when updating the penumbra versions, vendored types in `proto/sequencerapis/astria_vendored` may need to be updated as well.
# can update to a tagged release when https://github.com/penumbra-zone/penumbra/pull/4822 is included
penumbra-ibc = { git = "https://github.com/penumbra-zone/penumbra.git", rev = "87adc8d6b15f6081c1adf169daed4ca8873bd9f6", default-features = false }
penumbra-proto = { git = "https://github.com/penumbra-zone/penumbra.git", rev = "87adc8d6b15f6081c1adf169daed4ca8873bd9f6" }
penumbra-tower-trace = { git = "https://github.com/penumbra-zone/penumbra.git", rev = "87adc8d6b15f6081c1adf169daed4ca8873bd9f6" }
pin-project-lite = "0.2.13"
prost = "0.12"
rand = "0.8.5"
regex = "1.9"
# disable default features and explicitly enable rustls-tls to ensure openssl is disabled
# in the entire workspace
reqwest = { version = "0.11", default-features = false, features = [
"rustls-tls",
] }
serde = "1"
serde_json = "1"
sha2 = "0.10"
tempfile = "3.6.0"
tendermint = "0.34.0"
tendermint-config = "0.34.0"
tendermint-proto = "0.34.0"
tendermint-rpc = "0.34.0"
thiserror = "1"
tokio = "1.28"
tokio-stream = { version = "0.1.14" }
tokio-test = "0.4.2"
tokio-util = "0.7.9"
tonic = "0.10"
tracing = "0.1"
tryhard = "0.5.1"
which = "4.4.0"
wiremock = "0.5"