-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
30 lines (28 loc) · 1.09 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
[package]
name = "ipfs-sqlite-block-store"
version = "0.13.0"
repository = "https://github.com/actyx/ipfs-sqlite-block-store"
authors = ["Rüdiger Klaehn <[email protected]>", "David Craven <[email protected]>", "Actyx AG", "Roland Kuhn <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
keywords = ["ipfs", "dag"]
description = "block store for ipfs, using sqlite"
[dependencies]
anyhow = "1.0.52"
derive_more = "0.99.17"
fnv = "1.0.7"
futures = "0.3.19"
itertools = "0.10.3"
libipld = { version = "0.14.0", default-features = false }
parking_lot = "0.11.2"
rusqlite = { version = "0.26.3", features = ["backup", "bundled", "unlock_notify"] }
tracing = "0.1.29"
[dev-dependencies]
anyhow = { version = "1.0.52", features = ["backtrace"] }
libipld = { version = "0.14.0", default-features = false, features = ["derive", "dag-cbor"] }
maplit = "1.0.2"
multihash = { version = "0.16.3", default-features = false, features = ["sha2"] }
tempdir = "0.3.7"
tempfile = "3.2.0"
tokio = { version = "1.15.0", features = ["full"] }
tracing-subscriber = { version = "0.3.5", features = ["env-filter"] }