forked from mmalmi/scionic-merkle-tree-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (33 loc) · 859 Bytes
/
Cargo.toml
File metadata and controls
39 lines (33 loc) · 859 Bytes
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
[package]
name = "scionic-merkle-tree-rs"
version = "0.1.0"
edition = "2021"
authors = ["Scionic Merkle Tree Contributors"]
description = "Rust implementation of Scionic Merkle Trees - a hybrid of Merkle Trees and Merkle DAGs"
license = "MIT"
repository = "https://github.com/HORNET-Storage/Scionic-Merkle-Tree"
keywords = ["merkle", "dag", "cryptography", "verification", "blockchain"]
categories = ["cryptography", "data-structures"]
[dependencies]
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_cbor = "0.11"
serde_bytes = "0.11"
# Hashing and CID
sha2 = "0.10"
cid = "0.11"
multihash = "0.19"
multibase = "0.9"
# Error handling
thiserror = "1.0"
anyhow = "1.0"
# File operations
walkdir = "2.5"
# Utilities
hex = "0.4"
chrono = "0.4"
[dev-dependencies]
tempfile = "3.13"
criterion = "0.5"
chrono = "0.4"