2018-04-26 19:41:19 +00:00
|
|
|
[package]
|
|
|
|
name = "rustlings"
|
2023-05-17 14:56:01 +00:00
|
|
|
description = "Small exercises to get you used to reading and writing Rust code!"
|
2023-09-18 08:16:05 +00:00
|
|
|
version = "5.6.1"
|
2022-11-11 15:12:09 +00:00
|
|
|
authors = [
|
|
|
|
"Liv <mokou@fastmail.com>",
|
|
|
|
"Carol (Nichols || Goulding) <carol.nichols@gmail.com>",
|
|
|
|
]
|
2021-10-29 12:27:36 +00:00
|
|
|
edition = "2021"
|
2018-04-26 19:41:19 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-03-10 22:57:35 +00:00
|
|
|
clap = { version = "4.5.2", features = ["derive"] }
|
|
|
|
console = "0.15.8"
|
2023-08-25 21:18:01 +00:00
|
|
|
glob = "0.3.0"
|
2024-03-10 22:57:35 +00:00
|
|
|
home = "0.5.9"
|
|
|
|
indicatif = "0.17.8"
|
|
|
|
notify-debouncer-mini = "0.4.1"
|
|
|
|
regex = "1.10.3"
|
|
|
|
serde_json = "1.0.114"
|
|
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
|
|
toml = "0.8.10"
|
2019-03-20 20:05:45 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "rustlings"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-03-10 22:57:35 +00:00
|
|
|
assert_cmd = "2.0.14"
|
2023-08-25 21:18:01 +00:00
|
|
|
glob = "0.3.0"
|
2024-03-10 22:57:35 +00:00
|
|
|
predicates = "3.1.0"
|