2024-08-03 16:06:29 +00:00
|
|
|
[package]
|
|
|
|
name = "microfetch"
|
2024-08-04 23:10:43 +00:00
|
|
|
version = "0.3.3"
|
2024-08-03 16:06:29 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-08-04 09:44:12 +00:00
|
|
|
nix = {version = "0.29", features = ["fs", "hostname"]}
|
2024-08-03 17:00:58 +00:00
|
|
|
color-eyre = { version = "0.6", default-features = false }
|
|
|
|
|
2024-08-04 23:02:58 +00:00
|
|
|
[profile.dev]
|
|
|
|
opt-level = 3
|
|
|
|
|
2024-08-03 20:09:29 +00:00
|
|
|
[profile.release]
|
|
|
|
strip = true
|
|
|
|
opt-level = "z"
|
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|
|
|
|
panic = "abort"
|
2024-08-04 23:02:58 +00:00
|
|
|
|
|
|
|
[profile.profiler]
|
|
|
|
inherits = "release"
|
|
|
|
debug = true
|
|
|
|
split-debuginfo = "unpacked"
|
|
|
|
strip = "none"
|