29 lines
757 B
TOML
29 lines
757 B
TOML
[workspace]
|
|
members = ["wicked-waifus-protocol", "wicked-waifus-protocol-derive"]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
edition = "2024"
|
|
version = "0.1.0"
|
|
|
|
[workspace.dependencies]
|
|
byteorder = "1.5.0"
|
|
crc32fast = "1.4.2"
|
|
prettyplease = "0.2.35"
|
|
proc-macro2 = "1.0.95"
|
|
prost = "0.14.1"
|
|
prost-build = "0.14.1"
|
|
quote = "1.0.40" #
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
serde_json = "1.0.140"
|
|
syn = "2.0.104" #
|
|
thiserror = "2.0.12"
|
|
|
|
# Internal
|
|
wicked-waifus-protocol-derive = { path = "wicked-waifus-protocol-derive" }
|
|
|
|
[profile.release]
|
|
strip = true # Automatically strip symbols from the binary.
|
|
lto = true # Link-time optimization.
|
|
opt-level = 3 # Optimization level 3.
|
|
codegen-units = 1 # Maximum size reduction optimizations.
|