Files
time-mocker/Cargo.toml
T
tiennm99 b34dd391e4 chore: relicense under Apache-2.0
Switch from MIT to Apache-2.0 across LICENSE, workspace manifest, and README.
2026-05-20 17:08:09 +07:00

30 lines
542 B
TOML

[workspace]
resolver = "2"
members = [
"crates/time-mocker-core",
"crates/time-mocker-hook",
"crates/time-mocker-ui",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
authors = ["tiennm99"]
repository = "https://github.com/tiennm99/time-mocker"
rust-version = "1.90"
[workspace.dependencies]
windows = { version = "0.58", default-features = false }
windows-sys = "0.59"
[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"
opt-level = 3
panic = "abort"
[profile.dev]
opt-level = 1