# 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 = "rusty_chess_clock" version = "1.0.1" authors = ["Michael Bennett "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A simple chess clock implementation in Rust" readme = "README.md" keywords = [ "chess", "clock", "game", "timer", ] categories = [ "games", "command-line-utilities", ] license = "MIT" repository = "https://github.com/michaelbennett99/rusty_chess_clock" [lib] name = "rusty_chess_clock" path = "src/lib.rs" [[bin]] name = "chess_clock" path = "src/bin/chess_clock.rs" required-features = ["gui"] [[bin]] name = "chess_clock_cli" path = "src/bin/chess_clock_cli.rs" required-features = ["cli"] [[bin]] name = "clock_cli" path = "src/bin/clock_cli.rs" required-features = ["cli"] [dependencies.iced] version = "0.12.1" features = ["tokio"] optional = true [dependencies.termion] version = "4.0.2" optional = true [features] cli = ["termion"] gui = ["iced"]