[package] name = "secded" version = "1.1.0" authors = ["Pierre Avital "] edition = "2018" keywords = ["secded", "hamming", "error-correction", "network"] license = "MPL-2.0" repository = "https://gitlab.com/p-avital/secded-rs" description = "Single Error Correction, Double Error Detection Codes for Everyone" readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] byteorder = {version = "1.3.2", default-features = false, features = ["i128"]} lazy_static = "1.3.0" [dev-dependencies] rand = "0.7.0" quickcheck = "0.9.2" [features] no-panics = [] # Disables mmost checks that would result in a panic. # You should only enable this after testing your application. ffi = [] # Enables the FFI links dyn = [] # Enables SecdedDynamic, requires std bench = ["no-panics"] # Enables [bench] functions, disables panics because the benches are # known to never panic, requires nightly default = [] [lib] name = "secded" crate-type = ["lib", "staticlib", "dylib"] [badges] gitlab = { repository = "p-avital/secded-rs", branch = "master" }