-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
34 lines (31 loc) · 1.13 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
[package]
name = "storm-core"
version = "0.9.0"
license = "MIT"
authors = ["Dr Maxim Orlovsky <[email protected]>"]
description = "Storm Core Library: storage and messaging layer 3 on top of bitcoin & lightning network"
repository = "https://github.com/storm-org/storm-core"
homepage = "https://lnp-bp.org"
keywords = ["bitcoin", "lightning", "storage", "smart-contracts", "lnp-bp"]
categories = ["cryptography", "network-programming"]
readme = "README.md"
edition = "2021"
rust-version = "1.56.1"
[lib]
name = "storm"
path = "src/lib.rs"
[dependencies]
amplify = "3.13.0"
strict_encoding = "0.9.0"
commit_verify = "0.9.0"
stens = "0.9.0"
lnpbp_bech32 = "0.9.0"
internet2 = { version = "0.9.0", default-features = false, features = ["derive"] }
bitcoin_hashes = "0.11.0"
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }
serde_with = { version = "1.14", features = ["hex"], optional = true }
once_cell = "1.12.0"
[features]
default = []
all = ["serde"]
serde = ["serde_crate", "serde_with", "amplify/serde", "bitcoin_hashes/serde", "commit_verify/serde", "strict_encoding/serde", "stens/serde", "internet2/serde"]