mirror of
https://github.com/achanda/ipnetwork.git
synced 2025-06-16 08:48:51 +00:00
![dependabot-preview[bot]](/assets/img/avatar_default.png)
Updates the requirements on [criterion](https://github.com/bheisler/criterion.rs) to permit the latest version. - [Release notes](https://github.com/bheisler/criterion.rs/releases) - [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/bheisler/criterion.rs/compare/0.2.9...0.3.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
33 lines
845 B
TOML
33 lines
845 B
TOML
[package]
|
|
name = "ipnetwork"
|
|
version = "0.14.0" # When updating version, also modify html_root_url in the lib.rs
|
|
authors = ["Abhishek Chanda <abhishek.becs@gmail.com>", "Linus Färnstrand <faern@faern.net>"]
|
|
description = "A library to work with IP CIDRs in Rust, heavily WIP"
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/achanda/ipnetwork"
|
|
keywords = ["network", "ip", "address"]
|
|
readme = "README.md"
|
|
documentation = "https://docs.rs/ipnetwork/"
|
|
categories = ["network-programming", "os"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
clippy = {version = "0.0.302", optional = true}
|
|
serde = ">=0.8.0, <2.0"
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0"
|
|
serde_derive = ">=0.8.0, <2.0"
|
|
criterion = "0.3.0"
|
|
|
|
[badges]
|
|
travis-ci = { repository = "achanda/ipnetwork" }
|
|
|
|
[features]
|
|
default = []
|
|
dev = ["clippy"]
|
|
|
|
[[bench]]
|
|
name = "parse_bench"
|
|
harness = false
|