1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-18 23:41:37 +02:00
rustlings/Cargo.toml

31 lines
646 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]
2023-08-25 23:18:01 +02:00
indicatif = "0.17.6"
2022-04-20 09:35:08 +02:00
console = "0.15"
notify-debouncer-mini = "0.4.1"
2023-08-25 23:18:01 +02:00
toml = "0.7.6"
regex = "1.5"
2022-07-10 00:50:57 +02:00
serde = { version = "1.0", features = ["derive"] }
2023-08-25 23:18:01 +02:00
serde_json = "1.0.81"
home = "0.5.3"
glob = "0.3.0"
clap = { version = "4.4.0", features = ["derive"] }
2019-03-20 21:05:45 +01:00
[[bin]]
name = "rustlings"
path = "src/main.rs"
[dev-dependencies]
2023-08-26 23:34:40 +02:00
assert_cmd = "2.0.12"
predicates = "3.0.3"
2023-08-25 23:18:01 +02:00
glob = "0.3.0"