-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (50 loc) · 1.49 KB
/
Copy pathCargo.toml
File metadata and controls
53 lines (50 loc) · 1.49 KB
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
[workspace]
members = ["lib", "cli"]
resolver = "2"
[workspace.package]
version = "0.2.7"
edition = "2021"
license = "MIT"
repository = "https://github.com/stripe/purl"
homepage = "https://github.com/stripe/purl"
authors = ["Stripe"]
[workspace.dependencies]
mpp = { version = "0.10.0", features = ["client", "tempo"] }
reqwest = { version = "0.13", default-features = false, features = ["rustls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
toml = "1.0"
alloy = { version = "2.0", features = ["full"] }
alloy-signer = "2.0"
alloy-signer-local = "2.0"
alloy-provider = "2.0"
alloy-transport-http = "2.0"
solana-sdk = "4.0"
solana-client = "3.1"
solana-program = "4.0"
solana-commitment-config = "3.1"
solana-compute-budget-interface = "3.0"
spl-token = { version = "9.0", features = ["no-entrypoint"] }
spl-token-2022 = { version = "10.0", features = ["no-entrypoint"] }
spl-associated-token-account = { version = "8.0", features = ["no-entrypoint"] }
bs58 = "0.5"
bincode = "1.3"
hex = "0.4"
base64 = "0.22"
rand = "0.10"
rand_core = { version = "0.6", features = ["getrandom"] }
zeroize = { version = "1.8", features = ["derive"] }
eth-keystore = "0.5"
anyhow = "1.0"
thiserror = "2.0"
remain = "0.2"
dirs = "6.0"
once_cell = "1.21"
rpassword = "7.4"
tokio = { version = "1.52", features = ["full"] }
async-trait = "0.1"
sha3 = "0.11"
[patch.crates-io]
tempo-alloy = { git = "https://github.com/tempoxyz/tempo" }
tempo-primitives = { git = "https://github.com/tempoxyz/tempo" }