[package] name = "mtu" description = "Obtain the local network interface MTU towards a given IP address." keywords = ["mozilla", "interface", "mtu"] categories = ["network-programming", "web-programming"] homepage = "https://github.com/mozilla/mtu/" repository = "https://github.com/mozilla/mtu/" authors = ["The Mozilla Necko Team "] readme = "README.md" version = "0.1.3" edition = "2021" license = "MIT OR Apache-2.0" # Don't increase beyond what Firefox is currently using: # https://searchfox.org/mozilla-central/search?q=MINIMUM_RUST_VERSION&path=python/mozboot/mozboot/util.py # Also keep in sync with .github/workflows/check.yml rust-version = "1.76.0" [dependencies] # Don't increase beyond what Firefox is currently using: https://searchfox.org/mozilla-central/source/Cargo.lock libc = { version = "0.2", default-features = false } [dev-dependencies] rand = { version = "0.8", default-features = false, features = ["std", "std_rng"] } [target."cfg(windows)".dependencies] # Don't increase beyond what Firefox is currently using: https://searchfox.org/mozilla-central/source/Cargo.lock windows-core = "0.58" windows-targets = "0.52" [target."cfg(windows)".dev-dependencies] windows-bindgen = { version = "0.58" } # MSRV is 1.70 [lints.clippy] cargo = { level = "warn", priority = -1 } nursery = { level = "warn", priority = -1 } pedantic = { level = "warn", priority = -1 }