-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (40 loc) · 1.45 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
[package]
edition = "2021"
name = "datalayer-driver"
version = "0.1.0"
license = "MIT"
authors = ["yakuhito <[email protected]>"]
homepage = "https://github.com/DIG-Network/DataLayer-Driver"
repository = "https://github.com/DIG-Network/DataLayer-Driver"
[lib]
crate-type = ["cdylib"]
[dependencies]
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
napi = { version = "2.12.2", default-features = false, features = ["napi6", "async"] }
napi-derive = "2.12.2"
chia = "0.12.0"
thiserror = "1.0.61"
clvmr = "0.8.0"
tokio = "1.39.3"
chia-wallet-sdk = { version = "0.13.0", features = ["chip-0035"] }
hex-literal = "0.4.1"
num-bigint = "0.4.6"
hex = "0.4.3"
native-tls = "0.2.12"
[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"] }
[build-dependencies]
napi-build = "2.0.1"
[profile.release]
lto = true
strip = "symbols"