# 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 = "2018" name = "fcrc" version = "0.1.0" authors = ["Nick Fagan "] build = "build/generate_models.rs" description = "Fast-CRC is a generic CRC implementation using SIMD instructions when available and a fallback when not." readme = "README.md" keywords = ["crc", "crc16", "crc32", "checksum", "hash"] categories = ["algorithms", "no-std"] license = "MIT OR Apache-2.0" repository = "https://github.com/nicholasfagan/fcrc.git" resolver = "2" [lib] name = "fcrc" crate-type = ["lib", "staticlib", "cdylib"] [[bench]] name = "compare_crc" harness = false [dependencies.crc-catalog] version = "2.0.1" optional = true [dev-dependencies.crc] version = "2.1.0" [dev-dependencies.crc32fast] version = "1.2.1" [dev-dependencies.criterion] version = "0.3.5" features = ["html_reports"] [dev-dependencies.fastrand] version = "1.5.0" [dev-dependencies.lazy_static] version = "1.4.0" [dev-dependencies.quickcheck] version = "1.0.3" [build-dependencies.regex] version = "1.5.4" optional = true [build-dependencies.reqwest] version = "0.11.6" features = ["blocking"] optional = true [features] c_api = ["std"] default = ["std"] generate-models = ["regex", "reqwest"] std = []