# 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 = "nonogram-rs" version = "2.2.3" authors = ["Rico Riedel "] description = "A fast and lightweight nonogram solving library." readme = "README.md" keywords = [ "nonogram", "puzzle", "solver", ] license = "GPL-3.0-or-later" repository = "https://github.com/ricoriedel/nonogram-rs" [[bin]] name = "nonogram-cli" path = "src/bin/nonogram_cli.rs" required-features = ["cli"] [[bench]] name = "bench" harness = false required-features = ["serde"] [dependencies.clap] version = "4.0" features = ["derive"] optional = true [dependencies.crossterm] version = "0.25" optional = true [dependencies.rayon] version = "1.6" [dependencies.serde] version = "1.0" features = ["derive"] optional = true [dependencies.serde_json] version = "1.0" optional = true [dev-dependencies.criterion] version = "0.4" [dev-dependencies.serde] version = "1.0" features = ["derive"] [dev-dependencies.serde_json] version = "1.0" [features] cli = [ "dep:serde_json", "dep:crossterm", "dep:clap", "serde", ]