-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (48 loc) · 1.71 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
[package]
name = "MrSablierStaking"
version = "0.1.0"
edition = "2021"
authors = ["[email protected]"]
homepage = "https://github.com/AdrenaFoundation/MrSablierStaking"
repository = "https://github.com/AdrenaFoundation/MrSablierStaking"
license = "Apache-2.0"
keywords = ["sablier", "solana", "grpc", "rust", "adrena"]
publish = true
[[bin]]
path = "./src/client.rs"
name = "mrsablierstaking"
[dependencies]
adrena-abi = { git = "https://github.com/AdrenaFoundation/adrena-abi.git", rev = "a0880677cedc1f1c3cd3988afbb1dd2afec49dbb" }
# anchor-client = { version = "0.29.0", features = ["async"] }
# Waiting for 0.31.0 release - includes a fix on the async - https://github.com/coral-xyz/anchor/pull/3057
anchor-client = { git = "https://github.com/coral-xyz/anchor.git", rev = "fe4fcded34a68934a6017a85d43a307cdb86d803", features = [
"async",
] }
anyhow = "1.0.62"
backoff = { version = "0.4.0", features = ["tokio"] }
chrono = "0.4.26"
clap = { version = "4.3.0", features = ["derive"] }
env_logger = "0.11.3"
futures = "0.3.24"
log = "0.4.17"
openssl = "0.10.50"
postgres-openssl = "0.5.0"
serde_json = "1.0.86"
solana-client = "~2.0.10"
solana-sdk = "~2.0.10"
spl-associated-token-account = { version = "5.0.1", features = [
"no-entrypoint",
] }
tokio = { version = "1.21.2", features = ["rt-multi-thread"] }
tokio-postgres = "0.7.12"
tonic = "0.12.3"
yellowstone-grpc-client = "2.0.0"
yellowstone-grpc-proto = { version = "2.0.0", default-features = true }
rand = "0.8.5"
[profile.release]
lto = true
codegen-units = 1
# https://github.com/anza-xyz/agave/blob/v2.0.4/Cargo.toml#L502-L533
[patch.crates-io.curve25519-dalek]
git = "https://github.com/anza-xyz/curve25519-dalek.git"
rev = "b500cdc2a920cd5bff9e2dd974d7b97349d61464"