-
Notifications
You must be signed in to change notification settings - Fork 4.5k
/
Copy pathCargo.toml
47 lines (42 loc) · 1.68 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
[package]
name = "solana-frozen-abi"
description = "Solana Frozen ABI"
documentation = "https://docs.rs/solana-frozen-abi"
version = { workspace = true }
authors = { workspace = true }
repository = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
edition = { workspace = true }
[dependencies]
bs58 = { workspace = true }
bv = { workspace = true, features = ["serde"] }
lazy_static = { workspace = true }
log = { workspace = true, features = ["std"] }
once_cell = { workspace = true }
serde = { workspace = true, features = ["derive", "rc"] }
serde_bytes = { workspace = true }
serde_derive = { workspace = true }
serde_json = { workspace = true }
sha2 = { workspace = true }
solana-frozen-abi-macro = { workspace = true }
thiserror = { workspace = true }
[target.'cfg(not(target_os = "solana"))'.dependencies]
ahash = { workspace = true }
blake3 = { workspace = true, features = ["digest", "traits-preview"] }
block-buffer = { workspace = true }
byteorder = { workspace = true, features = ["i128"] }
either = { workspace = true, features = ["use_std"] }
generic-array = { workspace = true, features = ["serde", "more_lengths"] }
getrandom = { workspace = true, features = ["dummy"] }
im = { workspace = true, features = ["rayon", "serde"] }
memmap2 = { workspace = true }
once_cell = { workspace = true, features = ["alloc", "race"] }
rand_core = { workspace = true, features = ["std"] }
subtle = { workspace = true }
[target.'cfg(any(unix, windows))'.dependencies]
cc = { workspace = true, features = ["jobserver", "parallel"] }
[target.'cfg(not(target_os = "solana"))'.dev-dependencies]
solana-logger = { workspace = true }
[build-dependencies]
rustc_version = { workspace = true }