summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: c4369ed14f94588a3e2bdf8ace1dd8c8ef745921 (plain)
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
[package]
name    = "fss"
version = "0.1.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
edition = "2018"
license = "GPL-2.0"

[[bin]]
name = "fss-server"
path = "src/server.rs"

[[bin]]
name = "fss"
path = "src/client.rs"

[dependencies]
anyhow      = "1.0.40"
clap        = "2.33.3"
config      = "0.11.0"
env_logger  = "0.8.3"
getset      = "0.1.1"
itertools   = "0.10.0"
log         = "0.4.14"
prost       = "0.7"
serde       = "1.0.125"
tantivy     = "0.14"
tokio       = { version = "1.0", features = ["macros", "rt-multi-thread"] }
tonic       = "0.4"
xdg         = "2.2.0"
version     = "3.0.0"
resiter     = "0.4"

[build-dependencies]
tonic-build = "0.4"