forked from RGB-WG/rust-rgb20
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (43 loc) · 1.45 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
[package]
name = "rgb20"
version = "0.9.0"
license = "MIT"
authors = ["Dr Maxim Orlovsky <[email protected]>"]
description = "RGB-20 Library: fungible digital assets for bitcoin & lightning"
repository = "https://github.com/rgb-org/rgb-core"
homepage = "https://rgb.network"
keywords = ["bitcoin", "lightning", "rgb", "smart-contracts", "digital-assets"]
categories = ["cryptography::cryptocurrencies"]
readme = "README.md"
edition = "2021"
rust-version = "1.59.0"
[lib]
name = "rgb20"
path = "src/lib.rs"
crate-type = ["rlib", "staticlib"]
[[bin]]
name = "rgb20"
path = "src/bin/rgb20.rs"
required-features = ["cli"]
[dependencies]
amplify = "3.13.0"
strict_encoding = "~0.9.0"
stens = "0.9.0"
lnpbp = "0.9.0"
bp-seals = "0.9.0"
rgb-std = { version = "0.9.0", features = ["wallet"] }
bitcoin = "0.29.2"
chrono = "0.4"
url = "2.1"
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }
serde_with = { version = "1.14", features = ["hex"], optional = true }
serde_yaml = { version = "0.9", optional = true }
serde_json = { version = "1", optional = true }
base64-compat = { version = "1.0.0", optional = true }
clap = { version = "~3.2.23", optional = true, features = ["derive", "env"] }
colored = "2.0.0"
[features]
default = []
all = ["serde", "cli"]
serde = ["serde_crate", "serde_with", "lnpbp/serde", "bitcoin/serde", "rgb-std/serde", "amplify/serde", "chrono/serde"]
cli = ["clap", "serde", "serde_yaml", "serde_json", "base64-compat"]