-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (41 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
[package]
name = "slot-machine"
version = "0.0.1"
edition = "2021"
license = "MIT"
authors = ["yakuhito <y@kuhi.to>"]
homepage = "https://github.com/Yakuhito/slot-machine"
repository = "https://github.com/Yakuhito/slot-machine"
[dependencies]
clvmr = "0.10.0"
chia = "0.17.0"
clvm-traits = "0.17.0"
hex-literal = "0.4.1"
num-bigint = "0.4.6"
bip39 = "2.0.0"
getrandom = "0.2.15"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
hex = "0.4.3"
clap = { version = "4", features = ["derive"] }
csv = "1.3.0"
thiserror = "1.0.64"
tokio = { version = "1", features = ["full"] }
sqlx = { version = "0.6", features = ["sqlite", "runtime-async-std-native-tls"] }
bech32 = "0.9.1"
chia-wallet-sdk = { git="https://github.com/xch-dev/chia-wallet-sdk.git", rev="1237cbbb7f639ddf8718e704b0ba495ec57ac1c5", features=["offers"] }
[dev-dependencies]
anyhow = "1.0.86"
rstest = "0.22.0"
[target.aarch64-unknown-linux-gnu.dependencies]
openssl = { version = "0.10.64", features = ["vendored"] }
openssl-sys = { version = "0.9.102", features = ["vendored"] }
[target.aarch64-unknown-linux-musl.dependencies]
openssl = { version = "0.10.64", features = ["vendored"] }
openssl-sys = { version = "0.9.102", features = ["vendored"] }
[target.x86_64-unknown-linux-gnu.dependencies]
openssl = { version = "0.10.64", features = ["vendored"] }
openssl-sys = { version = "0.9.102", features = ["vendored"] }
[target.x86_64-unknown-linux-musl.dependencies]
openssl = { version = "0.10.64", features = ["vendored"] }
openssl-sys = { version = "0.9.102", features = ["vendored"] }