-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
71 lines (67 loc) · 1.78 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
[workspace]
members = ["cli", "cron", "plugin", "programs/*", "sdk", "utils"]
resolver = "2"
[profile.release]
overflow-checks = true
lto = "fat"
codegen-units = 1
[profile.release.build-override]
opt-level = 3
incremental = false
codegen-units = 1
[workspace.package]
version = "1.2.1"
edition = "2021"
license = "AGPL-3.0-or-later"
homepage = "https://sablier.dev"
repository = "https://github.com/sablier-xyz/sablier"
documentation = "https://docs.sablier.dev"
keywords = ["solana"]
[workspace.dependencies]
anchor-lang = "=0.29.0"
anchor-spl = "=0.29.0"
anyhow = "1.0"
base64 = "~0.21"
bincode = "1.3"
borsh = "0.10.3"
bytemuck = "1.17.1"
bzip2 = "0.4"
cargo_metadata = "=0.18.1"
chrono = { version = "0.4", default-features = false }
clap = { version = "4.5" }
dirs-next = "2.0.0"
futures = "0.3"
indicatif = "0.17"
log = "0.4"
nom = "~7"
proc-macro2 = "1.0"
quote = "1.0"
rayon = "1.10.0"
regex = "1.10.6"
reqwest = "0.11"
rustc_version = "0.4"
sablier-cron = { path = "./cron", version = "=1.2.1" }
sablier-network-program = { path = "./programs/network", version = "=1.2.1" }
sablier-plugin-utils = { path = "./plugin/utils", version = "=1.2.1" }
sablier-macros = { path = "./utils/macros", version = "=1.2.1" }
sablier-thread-program = { path = "./programs/thread", version = "=1.2.1" }
sablier-utils = { path = "./utils", version = "=1.2.1" }
serde = "1.0"
serde_json = "1.0"
solana-account-decoder = "=1.18.25"
solana-cli-config = "=1.18.25"
solana-client = "=1.18.25"
solana-geyser-plugin-interface = "=1.18.25"
solana-logger = "=1.18.25"
solana-program = "=1.18.25"
solana-quic-client = "=1.18.25"
solana-sdk = "=1.18.25"
solana-zk-token-sdk = "=1.18.25"
spl-associated-token-account = "1.1.3"
spl-token = "~3.5.0"
syn = "2.0"
tar = "0.4"
termcolor = "1.4"
thiserror = "1.0"
tokio = "1.40"
version = "3.0"