-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 793 Bytes
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 793 Bytes
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
[workspace]
resolver = "2"
members = ["api", "program"]
[workspace.package]
version = "1.0.0"
edition = "2021"
license = "Apache-2.0"
homepage = ""
documentation = ""
respository = ""
readme = "./README.md"
keywords = ["solana"]
[workspace.dependencies]
code-vm-api = { path = "./api", version = "1.0.0" }
borsh = "0.10.3"
bs58 = "0.4.0"
bytemuck = "1.14"
num_enum = "0.7"
sha2 = "0.10.8"
solana-ed25519-sha512 = { version = "0.1.2" }
curve25519-dalek = { version = "4.1.3", default-features = false, features = ["zeroize"] }
solana-curve25519 = "2.0.13"
solana-program = "1.18"
spl-associated-token-account = { version = "^2.3", features = [ "no-entrypoint" ] }
spl-token = { version = "^4", features = ["no-entrypoint"] }
steel = { version = "1.3", features = ["spl"] }
thiserror = "1.0"