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