[package] name = "flashed" description = "A flashcard TUI" version = "0.9.3" edition = "2021" license = "GPL-3.0" readme = "README.md" repository = "https://gitlab.com/john_t/flashed/" keywords = ["learning", "flashcards", "tui"] categories = ["command-line-utilities", "games"] exclude = ["icon.png", "icon.svg"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] tuviv = { version = "0.2.0", optional = true } crossterm = { version = "0.23", optional = true } once_cell = "1" serde = { version = "1", features = [ "derive" ] } serde_json = { version = "1", optional = true } fastrand = "1" chrono = { version = "0.4", features = [ "serde" ] } clap = { version = "3", features = [ "derive" ], optional = true } [features] ui = ["tuviv", "crossterm", "clap", "serde_json"] default = ["ui"] serde_opts = []