31 lines
771 B
TOML
31 lines
771 B
TOML
[package]
|
|
name = "duniter-gva-db"
|
|
version = "0.1.0"
|
|
authors = ["elois <elois@duniter.org>"]
|
|
description = "Duniter GVA DB"
|
|
repository = "https://git.duniter.org/nodes/typescript/duniter"
|
|
license = "AGPL-3.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
bincode = "1.2.1"
|
|
chrono = { version = "0.4.15", optional = true }
|
|
duniter-core = { git = "https://git.duniter.org/nodes/rust/duniter-core" }
|
|
dubp = { version = "0.51.0", features = ["duniter"] }
|
|
parking_lot = "0.11.0"
|
|
paste = "1.0.2"
|
|
serde = { version = "1.0.105", features = ["derive"] }
|
|
serde_json = "1.0.53"
|
|
uninit = "0.4.0"
|
|
zerocopy = "0.3.0"
|
|
|
|
[dev-dependencies]
|
|
|
|
[features]
|
|
#default = ["explorer"]
|
|
|
|
explorer = ["chrono", "duniter-core/explorer"]
|
|
leveldb_backend = ["duniter-core/leveldb_backend"]
|