-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
61 lines (55 loc) · 1.4 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
57
58
59
60
61
[package]
authors = ["hubble459 <[email protected]>"]
edition = "2021"
name = "rumgap"
publish = false
version = "0.1.0"
[workspace]
resolver = "2"
members = [".", "migration", "entity"]
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies, but not for our code:
[profile.dev.package."*"]
opt-level = 3
[dependencies]
tonic = { version = "0.11", features = ["gzip", "tls"] }
tonic-reflection = "0.11"
tower = { version = "0.4" }
tonic-async-interceptor = "0.11"
prost = "0.12"
prost-types = "0.12"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tokio-stream = "0.1"
migration = { path = "migration" }
entity = { path = "entity" }
log = "0"
log4rs = { version = "1.2.0", features = ["gzip"] }
lazy_static = "1"
argon2 = "0.5"
hmac = "0"
jwt = "0"
sha2 = "0"
chrono = "0"
regex = "1"
dotenvy = "0"
listenfd = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "^1"
bitflags = "2"
once_cell = "1"
sea-orm = { version = "0.12" }
phf = { version = "0", features = ["macros"] }
derive_more = "0"
futures = { version = "0" }
futures-util = { version = "0" }
manga_parser = { git = "https://github.com/hubble459/manga_parser" }
# manga_parser = { path = "../manga_parser" }
fcm = "0"
hyper = { version = "0" }
[build-dependencies]
glob = "0"
tonic-build = "0.11"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"