-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (42 loc) · 834 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "pms"
version = "0.1.0"
edition = "2021"
[dependencies]
tonic = { version = "0.8", features = ["tls"] }
tonic-web = "0.4"
tower-http = "0.3"
prost = {version = "0.11", features = ["prost-derive"]}
prost-types = "0.11"
tokio = { version = "1.0", features = ["full"] }
async-stream = "0.3"
futures-util = "0.3"
core-graphics = "0.22"
display-info = "0.3"
image = "0.24"
leptess = "0.13"
chrono = "0.4"
tantivy = "0.19"
futures = "0.3"
text_io = "0.1"
walkdir = "2"
indicatif = "0.17"
glob = "0.3"
rgb = "0.8"
[build-dependencies]
tonic-build = "0.8"
[[bin]]
name = "pms-server"
path = "src/bin/server.rs"
[[bin]]
name = "pms-client"
path = "src/bin/client.rs"
[profile.dev]
opt-level = 1
debug = true
debug-assertions = true
overflow-checks = true
[profile.release]
codegen-units = 1
opt-level = 3
lto = "thin"