rustlings/Cargo.toml

73 lines
1.7 KiB
TOML
Raw Normal View History

2024-03-28 12:34:48 -04:00
[workspace]
resolver = "2"
2024-03-31 12:59:01 -04:00
exclude = [
"tests/fixture/failure",
"tests/fixture/state",
"tests/fixture/success",
2024-03-31 20:11:52 -04:00
"dev",
2024-03-31 12:59:01 -04:00
]
2024-03-28 12:34:48 -04:00
[workspace.package]
2024-05-12 22:11:29 -04:00
version = "6.0.0-beta.8"
2022-11-11 10:12:09 -05:00
authors = [
"Liv <mokou@fastmail.com>",
2024-04-24 10:15:14 -04:00
"Mo Bitar <mo8it@proton.me>",
# Alumni
2022-11-11 10:12:09 -05:00
"Carol (Nichols || Goulding) <carol.nichols@gmail.com>",
]
2024-04-24 10:15:14 -04:00
repository = "https://github.com/rust-lang/rustlings"
2024-03-28 12:34:48 -04:00
license = "MIT"
2021-10-29 08:27:36 -04:00
edition = "2021"
2018-04-26 15:41:19 -04:00
[workspace.dependencies]
2024-04-27 11:32:42 -04:00
serde = { version = "1.0.199", features = ["derive"] }
toml_edit = { version = "0.22.12", default-features = false, features = ["parse", "serde"] }
2024-03-28 12:34:48 -04:00
[package]
name = "rustlings"
description = "Small exercises to get you used to reading and writing Rust code!"
version.workspace = true
authors.workspace = true
2024-04-24 10:15:14 -04:00
repository.workspace = true
2024-03-28 12:34:48 -04:00
license.workspace = true
edition.workspace = true
2024-04-24 10:15:14 -04:00
keywords = [
"exercise",
"learning",
]
2024-04-15 21:56:08 -04:00
include = [
2024-04-25 13:58:55 -04:00
"/src/",
2024-04-15 21:56:08 -04:00
"/exercises/",
2024-04-25 13:58:55 -04:00
"/solutions/",
# A symlink to be able to include `dev/Cargo.toml` although `dev` is excluded.
"/dev-Cargo.toml",
2024-04-15 21:56:08 -04:00
"/README.md",
2024-04-25 13:58:55 -04:00
"/LICENSE",
2024-04-15 21:56:08 -04:00
]
2024-03-28 12:34:48 -04:00
2018-04-26 15:41:19 -04:00
[dependencies]
2024-05-11 19:35:30 -04:00
anyhow = "1.0.83"
2024-03-27 10:16:42 -04:00
clap = { version = "4.5.4", features = ["derive"] }
2024-04-04 14:21:55 -04:00
crossterm = "0.27.0"
2024-04-28 18:36:13 -04:00
hashbrown = "0.14.5"
2024-04-26 22:32:06 -04:00
notify-debouncer-mini = { version = "0.4.1", default-features = false }
2024-04-24 19:56:01 -04:00
os_pipe = "1.1.5"
2024-04-26 22:32:06 -04:00
ratatui = { version = "0.26.2", default-features = false, features = ["crossterm"] }
2024-05-12 22:11:29 -04:00
rustlings-macros = { path = "rustlings-macros", version = "=6.0.0-beta.8" }
2024-05-11 19:35:30 -04:00
serde_json = "1.0.117"
serde.workspace = true
toml_edit.workspace = true
2019-03-20 16:05:45 -04:00
[dev-dependencies]
2024-03-10 18:57:35 -04:00
assert_cmd = "2.0.14"
predicates = "3.1.0"
2024-03-28 20:25:32 -04:00
[profile.release]
panic = "abort"
[profile.dev]
panic = "abort"
2024-04-25 13:02:07 -04:00
[package.metadata.release]
pre-release-hook = ["./release-hook.sh"]