-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
49 lines (44 loc) · 1.64 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
[package]
name = "lnp-core"
version = "0.9.2"
license = "MIT"
authors = ["Dr Maxim Orlovsky <[email protected]>"]
description = "LNP Core Library: rust implementation of modular lightning channels architecture"
repository = "https://github.com/LNP-BP/lnp-core"
homepage = "https://lnp-bp.org"
keywords = ["bitcoin", "lightning", "rgb", "smart-contracts", "lnp-bp"]
categories = ["cryptography::cryptocurrencies"]
readme = "README.md"
exclude = [".github", "contrib", "lightning_encoding", "lnp2p"]
edition = "2021"
rust-version = "1.59.0"
[lib]
name = "lnp"
path = "src/lib.rs"
crate-type = ["rlib", "staticlib"]
[dependencies]
amplify = "3.13.0"
strict_encoding = "0.9.0"
lightning_encoding = "0.9.3"
bitcoin_scripts = "0.9.0"
descriptor-wallet = { version = "0.9.0", features = ["keygen"] }
lnp2p = { version = "0.9.1", path = "lnp2p", default-features = false }
lnpbp = "0.9.0"
bitcoin = { version = "0.29.2", features = ["rand"] }
secp256k1 = { version = "0.24.2", features = ["global-context-less-secure"] }
internet2 = { version = "0.9.0-rc.1", default-features = false, features = ["keygen"] }
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }
serde_with = { version = "1.14", features = ["hex"], optional = true }
[features]
default = ["bolt"]
all = ["serde", "bolt", "bifrost"]
serde = ["serde_crate", "serde_with", "amplify/serde", "bitcoin/serde", "lnp2p/serde", "descriptor-wallet/serde"]
bolt = ["lnp2p/bolt"]
bifrost = ["lnp2p/bifrost"]
[package.metadata.docs.rs]
all-features = true
rustc-args = ["--cfg", "docsrs"]
[workspace]
members = [".", "lnp2p"]
exclude = ["contrib"]
default-members = [".", "lnp2p"]