-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (32 loc) · 848 Bytes
/
Cargo.toml
File metadata and controls
39 lines (32 loc) · 848 Bytes
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-uniffi"
version = "0.1.0"
authors = [
"Zoe Faltibà <zoefaltiba@gmail.com>",
"Nicola Busanello <nicola.busanello@gmail.com>",
]
edition = "2024"
rust-version = "1.88.0"
[lib]
crate-type = ["lib", "staticlib", "cdylib"]
name = "rgblibuniffi"
[[bin]]
name = "rgb-lib-uniffi-bindgen"
path = "uniffi-bindgen.rs"
[features]
default = ["uniffi/cli"]
[dependencies]
rgb-lib = { version = "0.3.0-beta.5", path = "../../", features = [
"electrum",
"esplora",
] }
uniffi = { version = "0.31.0", default-features = false }
[build-dependencies]
uniffi = { version = "0.31.0", default-features = false, features = [
"build",
] }
[target.'cfg(any(target_os = "android", target_os = "ios"))'.dependencies]
aws-lc-rs = { version = "1.16.2", default-features = false, features = [
"bindgen",
] }
[workspace]