-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (43 loc) · 2.45 KB
/
Cargo.toml
File metadata and controls
47 lines (43 loc) · 2.45 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
[package]
name = "ic-spl"
version = "0.1.0"
edition = "2021"
[dependencies]
candid = "0.10"
thiserror = "2"
serde = "1"
serde_bytes = "0.11"
serde_derive = "1.0.208"
borsh = "1.5.1"
borsh-derive = "1.5.1"
anyhow = "1.0.86"
num-traits = "0.2.19"
num-derive = "0.4"
num_enum = "0.7.2"
solana-hash = "2.2.0"
solana-instruction = "2.2.0"
solana-message = "2.2.0"
solana-pubkey = { version = "2.2.0", features = ["borsh", "curve25519"] }
solana-signature = "2.2.0"
solana-transaction = { version = "2.2.0", features = ["bincode"] }
solana-transaction-status-client-types = "2.2.0"
[patch.crates-io]
solana-account = { git = "https://github.com/dfinity/agave", tag = "323039e-js-feature-flag" }
solana-account-decoder-client-types = { git = "https://github.com/dfinity/agave", tag = "323039e-js-feature-flag" }
solana-clock = { git = "https://github.com/dfinity/agave", tag = "323039e-js-feature-flag" }
solana-commitment-config = { git = "https://github.com/dfinity/agave", tag = "323039e-js-feature-flag" }
solana-hash = { git = "https://github.com/dfinity/agave", tag = "323039e-js-feature-flag" }
solana-instruction = { git = "https://github.com/dfinity/agave", tag = "323039e-js-feature-flag" }
solana-keypair = { git = "https://github.com/dfinity/agave", tag = "323039e-js-feature-flag" }
solana-message = { git = "https://github.com/dfinity/agave", tag = "323039e-js-feature-flag" }
solana-nonce = { git = "https://github.com/dfinity/agave", tag = "323039e-js-feature-flag" }
solana-program = { git = "https://github.com/dfinity/agave", tag = "323039e-js-feature-flag" }
solana-pubkey = { git = "https://github.com/dfinity/agave", tag = "323039e-js-feature-flag" }
solana-reward-info = { git = "https://github.com/dfinity/agave", tag = "323039e-js-feature-flag" }
solana-signer = { git = "https://github.com/dfinity/agave", tag = "323039e-js-feature-flag" }
solana-signature = { git = "https://github.com/dfinity/agave", tag = "323039e-js-feature-flag" }
solana-transaction = { git = "https://github.com/dfinity/agave", tag = "323039e-js-feature-flag" }
solana-transaction-context = { git = "https://github.com/dfinity/agave", tag = "323039e-js-feature-flag" }
solana-transaction-error = { git = "https://github.com/dfinity/agave", tag = "323039e-js-feature-flag" }
solana-transaction-status-client-types = { git = "https://github.com/dfinity/agave", tag = "323039e-js-feature-flag" }
solana-system-interface = { git = "https://github.com/dfinity/solana-system-program", tag = "6185b40-js-feature-flag" }