forked from LtbLightning/payjoin-ffi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (37 loc) · 950 Bytes
/
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
[package]
name = "payjoin_ffi"
version = "0.1.0"
license = "MIT OR Apache-2.0"
edition = "2021"
[lib]
crate-type = ["lib", "staticlib", "cdylib"]
name = "payjoin_ffi"
[build-dependencies]
uniffi = { version = "0.24.3", features = ["build"] }
[dev-dependencies]
uniffi = { version = "0.24.3", features = ["bindgen-tests"] }
assert_matches = "1.5.0"
env_logger = "0.10.0"
bitcoind = { version = "0.33.2", features = ["0_21_2"] }
[dependencies]
anyhow = "1.0.70"
env_logger = "0.10.0"
log = "0.4.7"
serde = { version = "1.0.160", features = ["derive"] }
payjoin = { version = "0.10.0", features = ["send", "receive", "rand"] }
serde_json = "1.0.103"
uniffi = { version = "0.24.3" }
url = "2.4.0"
thiserror = "1.0.47"
bitcoincore-rpc = "0.17.0"
[[bin]]
name = "uniffi-bindgen"
path = "uniffi-bindgen.rs"
[profile.release-smaller]
inherits = "release"
opt-level = 'z'
lto = true
codegen-units = 1
strip = true
[features]
default = ["uniffi/cli"]