1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-20 00:08:06 +02:00
rustlings/Cargo.toml

32 lines
753 B
INI
Raw Normal View History

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