-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
49 lines (42 loc) · 1.45 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
[workspace.package]
version = "0.9.0"
description = "DAR to OAR Converter"
categories = ["compilers", "games", "parsing"]
authors = ["SARDONYX-sard"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/SARDONYX-sard/dar-to-oar"
readme = "README.md"
edition = "2021"
rust-version = "1.60"
[workspace]
members = ["core", "cli", "gui/backend"]
default-members = ["cli"]
resolver = "2"
[workspace.dependencies]
serde = { version = "1.0.214", features = ["derive"] } # Implement (De)Serialize
serde_json = "1.0.132" # core: To json/GUI: To avoid generate_context error.
snafu = "0.8.5"
tokio = { version = "1.41.1" } # Async runtime
tracing = { version = "0.1.40" } # logger
tracing-subscriber = "0.3.18"
tracing-appender = "0.2.3"
# dev-dependencies
temp-dir = "0.1.14"
pretty_assertions = "1.4.1" # Color diff assertion
quick_tracing = { version = "0.1.5", features = ["derive"] } # Easy logging
# workspace members
dar2oar_core = { path = "./core" }
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
dbg_macro = "warn"
print_stderr = "warn"
print_stdout = "warn"
todo = "warn"
unimplemented = "warn"
derive_partial_eq_without_eq = "allow"
future_not_send = "allow"
multiple_crate_versions = "allow"
pub_with_shorthand = "allow"
redundant_pub_crate = "allow"