-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
69 lines (65 loc) · 1.87 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
[workspace.package]
authors = ["Helium <info@helium.com>"]
license = "Apache-2.0"
edition = "2021"
description = "Tuktuk is a permissionless timed crank system for Solana."
homepage = "https://github.com/helium/tuktuk"
repository = "https://github.com/helium/tuktuk"
[workspace]
resolver = "2"
members = [
"tuktuk-crank-turner",
"solana-transaction-utils",
"tuktuk-sdk",
"tuktuk-cli",
"tuktuk-program",
]
[workspace.dependencies]
solana-sdk = "1.18.22"
solana-quic-client = "1.18"
solana-program = "1.18"
solana-client = "1.18"
anyhow = { version = "1", features = ["backtrace"] }
thiserror = "1"
bs58 = "0.5"
clap = { version = "4", features = ["derive"] }
config = { version = "0", default-features = false, features = ["toml"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0", features = ["serde"] }
tokio = { version = "1", default-features = false, features = [
"fs",
"macros",
"signal",
"sync",
"rt-multi-thread",
"rt",
"process",
"time",
] }
tokio-util = "0"
tokio-stream = { version = "0", features = ["fs"] }
# Keep at 0.10 since zeroize breaks for solana and rsa madness
tonic = { version = "0.10", features = ["tls", "tls-roots"] }
futures = "*"
futures-util = "*"
tracing = "0"
tracing-subscriber = { version = "0", default-features = false, features = [
"env-filter",
"registry",
"fmt",
] }
anchor-lang = "0.30.1"
anchor-client = "0.30.1"
spl-associated-token-account = "2.3.0"
spl-token = "4.0.0"
itertools = "0.13"
tokio-graceful-shutdown = "0.15"
solana-transaction-utils = { version = "0.1.0", path = "./solana-transaction-utils" }
tuktuk-sdk = { version = "0.2.0", path = "./tuktuk-sdk" }
tuktuk-program = { version = "0.2.0", path = "./tuktuk-program" }
# solana-transaction-utils = { version = "0.1.0" }
# tuktuk-sdk = { version = "0.1.0" }
# tuktuk-program = { version = "0.1.0" }
[profile.release]
debug = true