You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
638 B
32 lines
638 B
[package]
|
|
name = "rustlings"
|
|
description = "Small exercises to get you used to reading and writing Rust code!"
|
|
version = "5.5.1"
|
|
authors = [
|
|
"Liv <mokou@fastmail.com>",
|
|
"Carol (Nichols || Goulding) <carol.nichols@gmail.com>",
|
|
]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
argh = "0.1"
|
|
indicatif = "0.16"
|
|
console = "0.15"
|
|
notify = "4.0"
|
|
toml = "0.5"
|
|
regex = "1.5"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0.81"
|
|
home = "0.5.3"
|
|
glob = "0.3.0"
|
|
tokio = { version = "1.21.2", features = ["full"] }
|
|
|
|
[[bin]]
|
|
name = "rustlings"
|
|
path = "src/main.rs"
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "0.11.0"
|
|
predicates = "1.0.1"
|
|
glob = "0.3.0"
|