-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
22 lines (20 loc) · 1.07 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "oxycards"
version = "1.0.2"
edition = "2021"
authors = ["Brook Jeynes [email protected]", "twny [email protected]"]
license = "MIT"
description = "An interactive quiz application built for the terminal."
documentation = "https://brookjeynes.github.io/oxycards/"
readme = "README.md"
homepage = "https://github.com/BrookJeynes/oxycards"
repository = "https://github.com/BrookJeynes/oxycards-rs"
keywords = ["cli", "tui", "quiz", "study", "flashcard"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = "1.7.1" # An implementation of regular expressions for Rust. This implementation uses finite automata …
rand = "0.8.5" # Random number generators and other randomness functionality.
tui = "0.19.0" # A library to build rich terminal user interfaces or dashboards
crossterm = "0.26.0" # A crossplatform terminal library for manipulating terminals.
clap = { version = "4.1.6", features = ["derive"] }