forked from RGB-WG/rgb-schemata
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
43 lines (38 loc) · 1.01 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
[package]
name = "rgb-schemata"
version = "0.11.0-beta.7"
description = "Collection of the official RGB smart contract schemata"
keywords = ["bitcoin", "lightning", "rgb", "smart-contracts", "lnp-bp"]
categories = ["cryptography::cryptocurrencies"]
authors = ["Dr Maxim Orlovsky <[email protected]>"]
homepage = "https://github.com/RGB-WG"
repository = "https://github.com/RGB-WG/rgb-schemata"
rust-version = "1.76.0" # Due to rgb-std
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
[[bin]]
name = "rgb-schemata"
required-features = ["fs"]
[lib]
name = "schemata"
[dependencies]
amplify = "4.7.0"
strict_encoding = "2.7.0-rc.1"
strict_types = "2.7.0-rc.1"
aluvm = "0.11.0-beta.7"
bp-core = "0.11.0-beta.7"
rgb-std = { version = "0.11.0-beta.7", features = ["serde", "fs"] }
rgb-interfaces = "0.11.0-beta.7"
chrono = "0.4.38"
serde = "1.0"
serde_json = "1.0"
sha2 = "0.10.8"
[dev-dependencies]
chrono = "0.4.38"
serde_yaml = "0.9.33"
[features]
default = []
all = ["log", "fs"]
log = ["aluvm/log"]
fs = ["rgb-std/fs"]