-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
43 lines (41 loc) · 1012 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
37
38
39
40
41
42
43
[package]
name = "carbonado"
edition = "2021"
version = "0.6.0"
license = "MIT"
description = "An apocalypse-resistant data storage format for the truly paranoid."
documentation = "https://docs.rs/carbonado"
homepage = "https://github.com/diba-io/carbonado"
repository = "https://github.com/diba-io/carbonado.git"
include = ["src/**/*", "LICENSE", "README.md"]
[dependencies]
bao = "0.12.1"
bech32 = "0.11.0"
bitmask-enum = "2.1.0"
bytes = "1.4.0"
ecies = { version = "0.2.6", default-features = false, features = [
"pure",
"std",
] }
hex = "0.4.3"
libsecp256k1 = { version = "0.7.1", features = ["std"] }
log = "0.4.19"
nom = "7.1.3"
nostr = "0.33.0"
nostr-sdk = "0.33.0"
pretty_env_logger = "0.5.0"
secp256k1 = { version = "0.28.2", features = [
"global-context",
"rand-std",
"serde",
] }
serde = "1.0.164"
snap = "1.1.0"
thiserror = "1.0"
zfec-rs = "0.1.0"
once_cell = "1.19.0"
libsecp256k1-core = "0.3.0"
[dev-dependencies]
anyhow = "1.0.71"
rand = "0.8.5"
wasm-bindgen-test = "0.3.37"