# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "cidrs" version = "0.2.0" authors = ["zarvd "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "CIDR Library" homepage = "https://github.com/zarvd/cidrs" documentation = "https://docs.rs/cidrs" readme = "README.md" keywords = [ "Network", "IP", "CIDR", ] license = "MIT" repository = "https://github.com/zarvd/cidrs" [lib] name = "cidrs" path = "src/lib.rs" [[example]] name = "cidr" path = "examples/cidr.rs" [[example]] name = "routing_table" path = "examples/routing_table.rs" required-features = ["routing-table"] [[test]] name = "aggregate" path = "tests/aggregate.rs" [[test]] name = "cidr_contains" path = "tests/cidr_contains.rs" [[test]] name = "cidr_hosts" path = "tests/cidr_hosts.rs" [[test]] name = "cidr_mask_of" path = "tests/cidr_mask_of.rs" [[test]] name = "cidr_overlaps" path = "tests/cidr_overlaps.rs" [[test]] name = "routing_table_insert" path = "tests/routing_table_insert.rs" required-features = ["routing-table"] [[test]] name = "routing_table_len" path = "tests/routing_table_len.rs" required-features = ["routing-table"] [[test]] name = "routing_table_list_matched" path = "tests/routing_table_list_matched.rs" required-features = ["routing-table"] [[test]] name = "routing_table_match_longest" path = "tests/routing_table_match_longest.rs" required-features = ["routing-table"] [[bench]] name = "aggregate" path = "benches/aggregate.rs" harness = false [[bench]] name = "routing_table" path = "benches/routing_table.rs" harness = false required-features = ["routing-table"] [dependencies.thiserror] version = "1.0" [dev-dependencies.criterion] version = "0.5.1" features = ["html_reports"] [features] default = [] routing-table = []