Skip to content

Commit 7a5a35e

Browse files
chore: update dependencies (#22)
1 parent 98ca6dc commit 7a5a35e

File tree

2 files changed

+55
-21
lines changed

2 files changed

+55
-21
lines changed

rust/Cargo.toml

+36-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,42 @@ ephemeral-rollups-sdk-attribute-commit = { path = "commit-attribute", version =
3030
anchor-lang = { version = ">=0.28.0, <=0.30.1" }
3131
borsh = "0.10.3"
3232
paste = "^1.0"
33-
solana-program = { version = ">=1.16, <2.0" }
3433
proc-macro2 = "1.0"
3534
syn = { version = "1.0.60", features = ["full"] }
3635
quote = "1.0"
36+
37+
# runtime
38+
tokio = { version = "1.0", features = [ "rt", "sync", "macros" ] }
39+
futures = "0.3"
40+
41+
# network
42+
url = { version = "2.5", features = [ "serde" ] }
43+
websocket = { package = "tokio-websockets", version = "0.10", features = [ "client", "simd", "native-tls", "fastrand", "openssl" ] }
44+
reqwest = { version = "0.12" }
45+
46+
# solana
47+
solana-program = { version = ">=1.16, <=2.1.11" }
48+
sdk = { package = "solana-sdk", version = ">=1.16, <=2.1.11" }
49+
rpc = { package = "solana-rpc-client", version = ">=1.16, <=2.1.11" }
50+
rpc-api = { package = "solana-rpc-client-api", version = ">=1.16, <=2.1.11" }
51+
52+
# parsing
53+
serde = { version = "1.0", features = [ "derive" ] }
54+
json = { package = "sonic-rs", version = "0.3" }
55+
humantime = "2.1"
56+
57+
# codec
58+
base64 = "0.12"
59+
bs58 = "0.5"
60+
bincode = "1.3"
61+
zstd = "0.13"
62+
63+
# containers
64+
scc = "2.2.5"
65+
smallvec = { version = "1.13", features = [ "serde" ] }
66+
67+
# logging
68+
tracing = "0.1"
69+
70+
# misc
71+
thiserror = "1.0"

rust/resolver/Cargo.toml

+19-20
Original file line numberDiff line numberDiff line change
@@ -17,37 +17,36 @@ ephemeral-rollups-sdk = { workspace = true }
1717
## External crates
1818

1919
# runtime
20-
tokio = { version = "1.0", features = [ "rt", "sync", "macros" ] }
21-
futures = "0.3"
20+
tokio = { workspace = true }
21+
futures = { workspace = true }
2222

2323
# network
24-
url = { version = "2.5", features = [ "serde" ] }
25-
websocket = { package = "tokio-websockets", version = "0.10", features = [ "client", "simd", "native-tls", "fastrand", "openssl" ] }
26-
reqwest = { version = "0.12" }
24+
url = { workspace = true }
25+
websocket = { workspace = true }
26+
reqwest = { workspace = true }
2727

2828
# solana
29-
sdk = { package = "solana-sdk", version = ">=1.16, <2.0" }
30-
rpc = { package = "solana-rpc-client", version = ">=1.16, <2.0" }
31-
rpc-api = { package = "solana-rpc-client-api", version = ">=1.16, <2.0" }
29+
sdk = { workspace = true }
30+
rpc = { workspace = true }
31+
rpc-api = { workspace = true }
3232

3333
# parsing
34-
serde = { version = "1.0", features = [ "derive" ] }
35-
json = { package = "sonic-rs", version = "0.3" }
36-
humantime = "2.1"
34+
serde = { workspace = true }
35+
json = { workspace = true }
36+
humantime = { workspace = true }
3737

3838
# codec
39-
base64 = "0.12"
40-
bs58 = "0.5"
41-
bincode = "1.3"
42-
zstd = "0.13"
39+
base64 = { workspace = true }
40+
bs58 = { workspace = true }
41+
bincode = { workspace = true }
42+
zstd = { workspace = true }
4343

4444
# containers
45-
scc = "2.2.5"
46-
smallvec = { version = "1.13", features = [ "serde" ] }
45+
scc = { workspace = true }
46+
smallvec = { workspace = true }
4747

4848
# logging
49-
tracing = "0.1"
49+
tracing = { workspace = true }
5050

5151
# misc
52-
thiserror = "1.0"
53-
52+
thiserror = { workspace = true }

0 commit comments

Comments
 (0)