2018-04-26 15:41:19 -04:00
|
|
|
[package]
|
|
|
|
name = "rustlings"
|
2023-05-17 10:56:01 -04:00
|
|
|
description = "Small exercises to get you used to reading and writing Rust code!"
|
2023-05-17 15:05:51 -04:00
|
|
|
version = "5.5.1"
|
2022-11-11 10:12:09 -05:00
|
|
|
authors = [
|
|
|
|
"Liv <mokou@fastmail.com>",
|
|
|
|
"Carol (Nichols || Goulding) <carol.nichols@gmail.com>",
|
|
|
|
]
|
2021-10-29 08:27:36 -04:00
|
|
|
edition = "2021"
|
2018-04-26 15:41:19 -04:00
|
|
|
|
|
|
|
[dependencies]
|
2022-04-20 03:35:08 -04:00
|
|
|
argh = "0.1"
|
2023-08-25 17:18:01 -04:00
|
|
|
indicatif = "0.17.6"
|
2022-04-20 03:35:08 -04:00
|
|
|
console = "0.15"
|
|
|
|
notify = "4.0"
|
2023-08-25 17:18:01 -04:00
|
|
|
toml = "0.7.6"
|
|
|
|
regex = "1.5"
|
2022-07-09 18:50:57 -04:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-08-25 17:18:01 -04:00
|
|
|
serde_json = "1.0.81"
|
|
|
|
home = "0.5.3"
|
|
|
|
glob = "0.3.0"
|
|
|
|
clap = { version = "4.4.0", features = ["derive"] }
|
2019-03-20 16:05:45 -04:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "rustlings"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-08-26 17:34:40 -04:00
|
|
|
assert_cmd = "2.0.12"
|
|
|
|
predicates = "3.0.3"
|
2023-08-25 17:18:01 -04:00
|
|
|
glob = "0.3.0"
|