-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 820 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (31 loc) · 820 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
[workspace]
members = [
"src/shared",
"src/relayer",
"src/solana/client",
"programs/bridge",
"programs/validator",
]
resolver = "2"
[workspace.dependencies]
shared = { path = "src/shared" }
anchor-lang = { version = "0.30.1", features = ["init-if-needed"] }
anchor-spl = "0.30.1"
solana-sdk = "1.18.0"
solana-program = "1.18.0"
solana-client = "1.18.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_bytes = "0.11"
bincode = "1.3"
tokio = { version = "1.0", features = ["full"] }
sha2 = "0.10"
reqwest = { version = "0.11", features = ["json"] }
anyhow = "1.0"
hex = "0.4"
log = "0.4"
env_logger = "0.10"
chrono = { version = "0.4", features = ["serde"] }
thiserror = "1.0"
clap = { version = "4.0", features = ["derive"] }
uuid = { version = "1.0", features = ["v4"] }