-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (39 loc) · 959 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
[workspace]
members = [
"crates/libfrt",
"crates/libfrt-backend-www",
"crates/frt",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
readme = "README.md"
homepage = "https://about.furrygames.top/frt"
repository = "https://github.com/FurryGamesIndex/frt-rs.git"
license = "AGPL-3.0-or-later"
[workspace.dependencies]
anyhow = { version = "1.0", features = ["backtrace"] }
log = "0.4"
pretty_env_logger = "0.4"
regex = "1.7"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1.0"
serde_regex = "1.1"
toml = "0.5"
askama = "0.12"
lazy_static = "1.4"
imagesize = "0.11"
clap = { version = "4.0", features = ["derive"] }
[profile.relwithdbginfo]
inherits = "release"
debug = 1
strip = "none"
[profile.relwithdbginfo.package.frt]
debug = 1
[profile.relwithdbginfo.package.libfrt]
debug = 1
[profile.relwithdbginfo.package.libfrt-backend-www]
debug = 1
[profile.relwithdbginfo.package."*"]
debug = false