rustlings/Cargo.toml

31 lines
629 B
TOML
Raw Normal View History

2018-04-26 19:41:19 +00:00
[package]
name = "rustlings"
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]
2023-08-25 21:18:01 +00:00
indicatif = "0.17.6"
2022-04-20 07:35:08 +00:00
console = "0.15"
notify = "4.0"
2023-08-25 21:18:01 +00:00
toml = "0.7.6"
regex = "1.5"
2022-07-09 22:50:57 +00:00
serde = { version = "1.0", features = ["derive"] }
2023-08-25 21:18:01 +00: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 21:34:40 +00:00
assert_cmd = "2.0.12"
predicates = "3.0.3"
2023-08-25 21:18:01 +00:00
glob = "0.3.0"