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-09-18 04:16:05 -04:00
|
|
|
version = "5.6.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]
|
2024-03-24 22:46:56 -04:00
|
|
|
anyhow = "1.0.81"
|
2024-03-10 18:57:35 -04:00
|
|
|
clap = { version = "4.5.2", features = ["derive"] }
|
|
|
|
console = "0.15.8"
|
|
|
|
indicatif = "0.17.8"
|
|
|
|
notify-debouncer-mini = "0.4.1"
|
|
|
|
serde_json = "1.0.114"
|
|
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
2024-03-23 13:51:25 -04:00
|
|
|
shlex = "1.3.0"
|
2024-03-24 21:35:51 -04:00
|
|
|
toml_edit = { version = "0.22.9", default-features = false, features = ["parse", "serde"] }
|
2024-03-24 19:30:01 -04:00
|
|
|
which = "6.0.1"
|
2024-03-24 14:18:19 -04:00
|
|
|
winnow = "0.6.5"
|
2019-03-20 16:05:45 -04:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "rustlings"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-03-10 18:57:35 -04:00
|
|
|
assert_cmd = "2.0.14"
|
2023-08-25 17:18:01 -04:00
|
|
|
glob = "0.3.0"
|
2024-03-10 18:57:35 -04:00
|
|
|
predicates = "3.1.0"
|