-
Notifications
You must be signed in to change notification settings - Fork 25
/
Cargo.toml
43 lines (35 loc) · 998 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
[package]
name = "rgb-lib-uniffi"
version = "0.1.0"
authors = [
"Zoe Faltibà <[email protected]>",
"Nicola Busanello <[email protected]>",
]
edition = "2021"
rust-version = "1.77.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-alpha.11", path = "../../", features = [
"electrum",
"esplora",
] }
uniffi = { version = "0.28.2", default-features = false }
[build-dependencies]
uniffi = { version = "0.28.2", default-features = false, features = [
"build",
] }
[target.'cfg(any(target_os = "android", target_os = "ios"))'.dependencies]
aws-lc-rs = { version = "1.10.0", default-features = false, features = [
"bindgen",
] }
[workspace]
# Temp hack for uniffi 0.28 generated code, will not be necessary after next uniffi update.
[lints.clippy]
empty-line-after-doc-comments = "allow"