This repository has been archived by the owner on Feb 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
63 lines (54 loc) · 1.7 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
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "libcitadel"
version = "0.1.0"
description = "C-language bindings for Citadel runtime"
authors = ["Dr Maxim Orlovsky <[email protected]>"]
license = "MIT"
edition = "2018"
build = "build.rs"
[lib]
crate-type = ["staticlib"]
name = "citadel"
[build-dependencies]
cbindgen = "0.16"
openssl = { version = "^0.10", features = ["vendored"] }
[dependencies]
libc = "0.2"
amplify = "3"
amplify_derive = "2.4"
citadel-runtime = "0.1"
# slip132 = "0.3.2"
lnpbp = "0.4"
lnpbp-invoice = { version = "0.1.0", features = ["serde", "rgb"] }
# lnp-core = "0.3.10
rgb-core = "0.4.3"
rgb20 = "0.4"
internet2 = "0.3.10"
microservices = { version = "0.3.10", default-features = false }
bech32 = "0.7"
bitcoin = "0.26"
descriptor-wallet = "0.4"
miniscript = "5.1"
bip39 = "1.0.0-rc1"
rand = "0.8.3"
base64-compat = "1.0.0"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_with = "1.5"
serde_with_macros = "~1.2.0" # Fix for the problem in 1.3.0
serde_json = "1"
[patch.crates-io]
# Required to fix Android SystemTime incorrect size
lightning-invoice = { git = "https://github.com/LNP-BP/rust-lightning-invoice", tag = "systemtime-fix" }
# Remove this once https://github.com/jean-airoldie/zeromq-src-rs/pull/15 got merged
zeromq-src = { git = "https://github.com/LNP-BP/zeromq-src-rs", branch = "fix/cmake" }
[target.'cfg(target_os="android")'.dependencies]
android_logger = "~0.8.6"
[target.'cfg(not(target_os="android"))'.dependencies]
env_logger = "~0.7.1"
[target.'cfg(any(target_os="android", target_os="ios"))'.dependencies.zmq]
version = "~0.9.2"
features = ["vendored"]
[target.'cfg(any(target_os="android", target_os="ios"))'.dependencies.libsqlite3-sys]
version = "~0.18.0"
features = ["bundled"]