rustlings/Cargo.toml

32 lines
755 B
TOML
Raw Normal View History

2018-04-26 22:41:19 +03:00
[package]
name = "rustlings"
description = "Small exercises to get you used to reading and writing Rust code!"
2023-09-18 11:16:05 +03:00
version = "5.6.1"
2022-11-11 18:12:09 +03:00
authors = [
"Liv <mokou@fastmail.com>",
"Carol (Nichols || Goulding) <carol.nichols@gmail.com>",
]
2021-10-29 15:27:36 +03:00
edition = "2021"
2018-04-26 22:41:19 +03:00
[dependencies]
2024-06-27 12:18:21 +03:00
anyhow = "1.0.86"
clap = { version = "4.5.7", features = ["derive"] }
2024-03-11 01:57:35 +03:00
console = "0.15.8"
indicatif = "0.17.8"
notify-debouncer-mini = "0.4.1"
2024-06-27 12:18:21 +03:00
serde_json = "1.0.118"
serde = { version = "1.0.203", features = ["derive"] }
2024-03-23 20:51:25 +03:00
shlex = "1.3.0"
2024-06-27 12:18:21 +03:00
toml_edit = { version = "0.22.14", default-features = false, features = ["parse", "serde"] }
which = "6.0.1"
2024-06-27 12:18:21 +03:00
winnow = "0.6.13"
2019-03-20 23:05:45 +03:00
[[bin]]
name = "rustlings"
path = "src/main.rs"
[dev-dependencies]
2024-03-11 01:57:35 +03:00
assert_cmd = "2.0.14"
2023-08-26 00:18:01 +03:00
glob = "0.3.0"
2024-03-11 01:57:35 +03:00
predicates = "3.1.0"