-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
35 lines (31 loc) · 867 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
[package]
name = "yaque"
version = "0.6.6"
authors = ["Pedro Arruda <[email protected]>"]
edition = "2018"
description = "Yaque is yet another disk-backed persistent queue for Rust"
license = "Apache-2.0"
homepage = "https://github.com/tokahuke/yaque"
repository = "https://github.com/tokahuke/yaque"
keywords = ["queue", "persistent", "disk", "data-structures"]
readme = "readme.md"
exclude = ["data"]
resolver = "2"
[features]
default = ["recovery", "log-trace"]
recovery = ["sysinfo"]
log-trace = [] # test only
log-debug = [] # test only
[dependencies]
notify = "5.1.0"
log = "0.4.17"
sysinfo = { version = "0.28.0", default-features = false, optional = true }
futures = "0.3.26"
lazy_static = "1.4.0"
rand = "0.8.5"
semver = "1.0.16"
[dev-dependencies]
rand_xorshift = "0.3.0"
simple_logger = "4.0.0"
ctor = "0.1.26"
futures-timer = "3.0.2"