-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
29 lines (26 loc) · 826 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
[package]
name = "storethehash"
version = "0.1.0"
authors = ["Volker Mische <[email protected]>"]
edition = "2018"
description = "Storage for hashes, targeted at content addressable systems."
license = "MIT OR Apache-2.0"
repository = "https://github.com/vmx/storethehash/"
keywords = ["database", "persistence", "content-addressable"]
categories = ["database-implementations"]
[dependencies]
thiserror = "1.0.22"
log = "0.4.11"
[dev-dependencies]
tempfile = "3.1.0"
cid = { version = "0.6.0", default-features = false, features = ["std"] }
fil_logger = "0.1.2"
serde_json = "1.0.59"
storethehash-primary-cid = { version = "0.1.0", path = "primary/cid" }
storethehash-primary-inmemory = { version = "0.1.0", path = "primary/inmemory" }
[workspace]
members = [
"db/cid-ffi",
"primary/cid",
"primary/inmemory",
]