forked from RGB-Tools/rgb-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (56 loc) · 1.88 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
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "rgb-lib"
version = "0.2.0-alpha.5"
authors = ["Zoe Faltibà <zoefaltiba@gmail.com>", "Nicola Busanello <nicola.busanello@gmail.com>"]
edition = "2021"
rust-version = "1.67"
repository = "https://github.com/RGB-Tools/rgb-lib"
homepage = "https://github.com/RGB-Tools/rgb-lib"
license = "MIT"
description = "RGB wallet library"
exclude = ["migration"]
[workspace]
members = [".", "migration"]
[dependencies]
base64 = "0.21.0"
bdk = { version = "0.28", features = ["electrum", "keys-bip39"] }
bitcoin = { version = "0.30.0", features = ["base64"] }
chacha20poly1305 = { version = "0.10.1", features = ["stream"] }
electrum-client = "0.17.0"
futures = "0.3"
hex = "0.4.3"
rand = "0.8.5"
rgb-lib-migration = { path = "migration", version = "0.2.0-alpha.5" }
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "multipart", "native-tls"] }
scrypt = "0.11.0"
sea-orm = { version = "^0.12.2", features = ["sqlx-mysql", "sqlx-postgres", "sqlx-sqlite", "runtime-async-std-native-tls", "macros"] }
sea-query = "=0.30.1"
serde = { version = "^1.0", features = ["derive"] }
serde_json = { version = "^1.0", features = ["preserve_order"] }
slog = "2.7.0"
slog-async = "2.8.0"
slog-term = "2.9.0"
tempfile = "3.8.0"
thiserror = "1.0"
time = { version = "0.3.28", features = ["std"] }
tree_magic = "0.2.3"
typenum = "1.16.0"
walkdir = "2.3.3"
zip = { version = "0.6.6", default-features = false, features = ["time", "zstd"] }
# RGB-related deps
amplify = "=4.0.1"
bp-core = "=0.10.9"
commit_verify = "0.10.5"
rgb-contracts = { version = "=0.10.0", features = ["electrum"] }
rgb-schemata = "=0.10.0"
rgb-std = "=0.10.8"
rgb-wallet = "=0.10.8"
rgb_core = { package = "rgb-core", version = "=0.10.7" }
strict_encoding = "=2.5.0"
strict_types = "=1.6.1"
[dev-dependencies]
electrum-client = "0.17.0"
lazy_static = "1.4.0"
once_cell = "1.18.0"
serial_test = "2.0.0"
tempfile = "3.8"