-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
36 lines (32 loc) · 1022 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
[package]
name = "lightning_encoding"
version = "0.9.3"
license = "Apache-2.0"
authors = ["Dr Maxim Orlovsky <[email protected]>"]
description = "Network encoding for lightning network peer protocol data types"
repository = "https://github.com/LNP-BP/lnp-core"
homepage = "https://lnp-bp.org"
keywords = ["bitcoin", "lightning", "lnp-bp", "encoding"]
categories = ["cryptography::cryptocurrencies", "network-programming", "parse"]
readme = "README.md"
edition = "2021"
rust-version = "1.56.1"
[lib]
name = "lightning_encoding"
path = "src/lib.rs"
crate-type = ["rlib", "staticlib"]
[dependencies]
amplify = "3.14.2"
strict_encoding = "0.9.0"
lightning_encoding_derive = { version = "0.9.1", path = "derive", optional = true }
lnpbp_chain = "0.9.0"
bitcoin = "0.29.2"
chrono = "0.4.19"
bitcoin_scripts = { version = "0.9.0", default-features = false }
[features]
default = ["derive"]
all = ["derive"]
derive = ["lightning_encoding_derive"]
[workspace]
members = [".", "derive"]
default-members = [".", "derive"]