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