-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
56 lines (51 loc) · 1.31 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "rrdb"
version = "0.0.2"
authors = ["myyrakle <[email protected]>"]
description = "ready"
keywords = ["db", "database", "sql"]
edition = "2021"
license = "MIT"
include = ["src/*", "Cargo.toml"]
exclude = []
readme = "README.md"
repository = "https://github.com/myyrakle/rrdb"
documentation = "https://github.com/myyrakle/rrdb/blob/master/README.md"
homepage = "https://github.com/myyrakle/rrdb/blob/master/README.md"
[dependencies]
tokio = { version = "1.21.0", features = ["full"] }
clap = { version = "3.1.3", features = ["derive"] }
atty = { version = "0.2.14", optional = true }
structopt = { version = "0.3.18", optional = true }
serde = { version = "1", features = ["derive"] }
toml = "0.5.9"
dyn-clone = "1.0.4"
derive_builder = "0.10.2"
path-absolutize = "3.0.13"
whoami = "1.2.1"
thiserror = "1.0.32"
async-trait = "0.1.80"
bytes = "1.2.1"
tokio-util = { version = "0.7.4", features = [ "codec" ] }
futures = "0.3.23"
chrono = "0.4.22"
bson = "2.11.0"
time = "0.3.36"
colored = "2.0.0"
uuid = "1.1.2"
itertools = "0.10.5"
anyhow = "1.0.86"
mockall = "0.12.1"
[target.'cfg(windows)'.dependencies]
winreg = "0.10.1"
[[bin]]
name = "rrdb"
path = "./src/main.rs"
required-features = ["rrdb"]
[[bin]]
name = "test"
path = "./src/test.rs"
[features]
default = ["rrdb"]
rrdb = ["cli"]
cli = ["atty", "structopt"]