forked from RGB-Tools/rgb-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (32 loc) · 808 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
[package]
name = "rgb-lib-ffi"
version = "0.1.0"
authors = [
"Zoe Faltibà <[email protected]>",
"Nicola Busanello <[email protected]>",
]
edition = "2021"
rust-version = "1.67"
[lib]
crate-type = ["lib", "staticlib", "cdylib"]
name = "rgblibffi"
[[bin]]
name = "rgb-lib-ffi-bindgen"
path = "uniffi-bindgen.rs"
[features]
default = ["uniffi/cli"]
[dependencies]
rgb-lib = { version = "0.3.0-alpha.1", path = "../", features = [
"electrum",
"esplora",
] }
uniffi = { version = "0.27.1", default-features = false }
[build-dependencies]
uniffi = { version = "0.27.1", default-features = false, features = [
"build",
] }
[target.'cfg(target_os = "android")'.dependencies]
openssl = { version = "0.10", default-features = false, features = [
"vendored",
] }
[workspace]