# 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" rust-version = "1.56" name = "hwcalc" version = "0.2.0" authors = ["Noah Hellman "] description = "An arbitrary bit-width calculator" homepage = "https://hllmn.net/projects/hwcalc" readme = "README.md" keywords = [ "calculator", "binary", ] license = "MIT" repository = "https://git.sr.ht/~nhellman/hwcalc" [[bin]] name = "hc" path = "src/main.rs" [dependencies.dirs] version = "4.0" optional = true default-features = false [dependencies.hwcalc_lib] version = "0.2.0" [dependencies.rustyline] version = "10.0" optional = true default-features = false [dependencies.rustyline-derive] version = "0.7" optional = true default-features = false [features] default = ["readline"] readline = [ "rustyline", "dirs", "rustyline-derive", ] small_max = ["hwcalc_lib/small_max"] [target."cfg(unix)".dependencies.nix] version = "0.24" features = ["fs"] default-features = false