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

57 lines
1.2 KiB
INI
Raw Normal View History

2024-03-28 17:34:48 +01: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
]
members = [
"gen-dev-cargo-toml",
]
2024-03-28 17:34:48 +01:00
[workspace.package]
2024-03-29 01:25:21 +01:00
version = "6.0.0"
2022-11-11 16:12:09 +01:00
authors = [
"Liv <mokou@fastmail.com>",
"Carol (Nichols || Goulding) <carol.nichols@gmail.com>",
]
2024-03-28 17:34:48 +01:00
license = "MIT"
2021-10-29 14:27:36 +02:00
edition = "2021"
2018-04-26 21:41:19 +02:00
[workspace.dependencies]
2024-04-11 02:51:50 +02:00
anyhow = "1.0.82"
serde = { version = "1.0.197", features = ["derive"] }
toml_edit = { version = "0.22.9", default-features = false, features = ["parse", "serde"] }
2024-03-28 17:34:48 +01: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 17:34:48 +01:00
version.workspace = true
authors.workspace = true
license.workspace = true
edition.workspace = true
2018-04-26 21:41:19 +02:00
[dependencies]
anyhow.workspace = true
2024-03-27 15:16:42 +01:00
clap = { version = "4.5.4", features = ["derive"] }
2024-04-04 20:21:55 +02:00
crossterm = "0.27.0"
2024-03-10 23:57:35 +01:00
notify-debouncer-mini = "0.4.1"
2024-04-04 20:21:55 +02:00
ratatui = "0.26.1"
2024-03-28 17:34:48 +01:00
rustlings-macros = { path = "rustlings-macros" }
2024-03-27 15:16:42 +01:00
serde_json = "1.0.115"
serde.workspace = true
toml_edit.workspace = true
which = "6.0.1"
2019-03-20 21:05:45 +01:00
[dev-dependencies]
2024-03-10 23:57:35 +01:00
assert_cmd = "2.0.14"
predicates = "3.1.0"
2024-03-29 01:25:32 +01:00
[profile.release]
panic = "abort"
[profile.dev]
panic = "abort"