-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
36 lines (31 loc) · 885 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
[package]
name = "skip_ratchet"
version = "0.3.0"
edition = "2021"
description = "Skip ratchet"
keywords = ["wnfs", "webnative", "skip-ratchet", "decentralisation"]
categories = [
"filesystem",
"cryptography",
]
license = "Apache-2.0"
[dependencies]
hex = "0.4"
rand_core = "0.6.2"
serde = { version = "1.0", optional = true, features = ["derive"] }
serde_bytes = { version = "0.11", optional = true }
blake3 = { version = "1.4", features = ["traits-preview"] }
[features]
serde = ["dep:serde", "dep:serde_bytes"]
[dev-dependencies]
proptest = "1.0"
test-strategy = "0.3"
rand = "0.8"
libipld = { version = "0.16", features = ["dag-cbor", "derive", "serde-codec"] }
[profile.test]
opt-level = 3
overflow-checks = false
# Speedup build on macOS
# See https://blog.rust-lang.org/2021/03/25/Rust-1.51.0.html#splitting-debug-information
[profile.dev]
split-debuginfo = "unpacked"