-
Notifications
You must be signed in to change notification settings - Fork 23
/
Cargo.toml
43 lines (36 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
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
authors = ["hexilee <i@hexilee.me>"]
edition = "2018"
name = "tifs"
version = "0.3.2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
tokio = {version = "1.12", features = ["macros", "rt", "time", "fs"]}
async-trait = "0.1"
bytes = "1.0"
bytestring = "1.0"
clap = "2.32"
fuser = {git = "https://github.com/cberner/fuser.git", features = ["serializable", "abi-7-31"]}
futures = "0.3"
libc = "0.2"
lru = "0.6"
parse-size = "1.0.0"
serde = {version = "1", features = ["derive"]}
slab = "0.4.2"
thiserror = "1.0"
tikv-client = "0.3.0"
toml = "0.5"
tracing = "0.1"
tracing-futures = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-opentelemetry = "0.16"
opentelemetry-jaeger = { version = "0.15", features = ["collector_client"] }
opentelemetry = { version = "0.16", default-features = false, features = ["trace"] }
bincode = {version = "1.3.1", optional = true}
serde_json = {version = "1", optional = true}
paste = "1.0"
[features]
default = ["json"]
binc = ["bincode"]
json = ["serde_json"]