forked from kevinheavey/solders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (46 loc) · 1.55 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
[package]
name = "solders"
version = "0.10.0"
edition = "2021"
include = ["/src", "/LICENSE", "/pyproject.toml"]
description = "Python binding to the Solana Rust SDK"
license = "MIT"
repository = "https://github.com/kevinheavey/solders"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "solders"
crate-type = ["cdylib", "rlib"]
[dependencies]
pyo3 = { workspace = true, features = ["macros", "extension-module", "abi3-py37"] }
solana-sdk = { workspace = true }
bincode = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
dict_derive = "0.4.0"
serde_with = { workspace = true }
base64 = { workspace = true }
camelpaste = "0.1.0"
serde_cbor = { workspace = true }
thiserror = "^1.0.31"
bs58 = "^0.4.0"
zstd = "0.11.2"
derive_more = { workspace = true }
pythonize = { git = "https://github.com/kevinheavey/pythonize", rev = "001db40" }
solders-traits = { workspace = true }
solders-macros = { workspace = true }
solders-primitives = { workspace = true }
[workspace]
members = [".", "traits", "macros", "primitives"]
[workspace.dependencies]
pyo3 = { git = "https://github.com/PyO3/pyo3", rev = "1d20f2a", default-features = false }
solders-macros = { path = "./macros", version = "0.10.0" }
solders-traits = { path = "./traits", version = "0.10.0" }
serde_with = "^1.14.0"
solders-primitives = { path = "./primitives", version = "0.10.0" }
solana-sdk = "^1.14.1"
bincode = "1.3.3"
base64 = "0.13.0"
serde = "^1.0.136"
serde_json = "^1.0.59"
serde_cbor = "^0.11.2"
derive_more = "0.99.17"