1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-12-12 11:14:55 +02:00
rustlings/Cargo.toml

54 lines
1.1 KiB
TOML
Raw Normal View History

2024-03-28 18:34:48 +02:00
[workspace]
resolver = "2"
2024-03-31 18:59:01 +02:00
exclude = [
"tests/fixture/failure",
"tests/fixture/state",
"tests/fixture/success",
2024-04-01 02:11:52 +02:00
"dev",
2024-03-31 18:59:01 +02:00
]
2024-03-28 18:34:48 +02:00
[workspace.package]
2024-03-29 02:25:21 +02:00
version = "6.0.0"
2022-11-11 17:12:09 +02:00
authors = [
"Liv <mokou@fastmail.com>",
"Carol (Nichols || Goulding) <carol.nichols@gmail.com>",
]
2024-03-28 18:34:48 +02:00
license = "MIT"
2021-10-29 14:27:36 +02:00
edition = "2021"
2018-04-26 21:41:19 +02:00
2024-03-28 18:34:48 +02:00
[package]
name = "rustlings"
description = "Small exercises to get you used to reading and writing Rust code!"
2024-04-01 02:11:52 +02:00
default-run = "rustlings"
2024-03-28 18:34:48 +02:00
version.workspace = true
authors.workspace = true
license.workspace = true
edition.workspace = true
2018-04-26 21:41:19 +02:00
[dependencies]
2024-03-25 04:46:56 +02:00
anyhow = "1.0.81"
2024-03-27 16:16:42 +02:00
clap = { version = "4.5.4", features = ["derive"] }
2024-03-11 00:57:35 +02:00
console = "0.15.8"
2024-04-04 20:21:55 +02:00
crossterm = "0.27.0"
2024-03-11 00:57:35 +02:00
indicatif = "0.17.8"
notify-debouncer-mini = "0.4.1"
2024-04-04 20:21:55 +02:00
ratatui = "0.26.1"
2024-03-28 18:34:48 +02:00
rustlings-macros = { path = "rustlings-macros" }
2024-03-27 16:16:42 +02:00
serde_json = "1.0.115"
2024-03-11 00:57:35 +02:00
serde = { version = "1.0.197", features = ["derive"] }
2024-03-23 19:51:25 +02:00
shlex = "1.3.0"
2024-03-25 03:35:51 +02:00
toml_edit = { version = "0.22.9", default-features = false, features = ["parse", "serde"] }
which = "6.0.1"
2024-03-24 20:18:19 +02:00
winnow = "0.6.5"
2019-03-20 22:05:45 +02:00
[dev-dependencies]
2024-03-11 00:57:35 +02:00
assert_cmd = "2.0.14"
2023-08-25 23:18:01 +02:00
glob = "0.3.0"
2024-03-11 00:57:35 +02:00
predicates = "3.1.0"
2024-03-29 02:25:32 +02:00
[profile.release]
panic = "abort"
[profile.dev]
panic = "abort"