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

73 lines
1.7 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
]
2024-03-28 17:34:48 +01:00
[workspace.package]
2024-07-10 16:51:34 +02:00
version = "6.1.0"
2022-11-11 16:12:09 +01:00
authors = [
"Liv <mokou@fastmail.com>",
2024-04-24 16:15:14 +02:00
"Mo Bitar <mo8it@proton.me>",
# Alumni
2022-11-11 16:12:09 +01:00
"Carol (Nichols || Goulding) <carol.nichols@gmail.com>",
]
2024-04-24 16:15:14 +02:00
repository = "https://github.com/rust-lang/rustlings"
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-07-10 13:27:32 +02:00
serde = { version = "1.0.204", features = ["derive"] }
toml_edit = { version = "0.22.15", 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!"
version.workspace = true
authors.workspace = true
2024-04-24 16:15:14 +02:00
repository.workspace = true
2024-03-28 17:34:48 +01:00
license.workspace = true
edition.workspace = true
2024-04-24 16:15:14 +02:00
keywords = [
"exercise",
"learning",
]
2024-04-16 03:56:08 +02:00
include = [
2024-04-25 19:58:55 +02:00
"/src/",
2024-04-16 03:56:08 +02:00
"/exercises/",
2024-04-25 19:58:55 +02:00
"/solutions/",
# A symlink to be able to include `dev/Cargo.toml` although `dev` is excluded.
"/dev-Cargo.toml",
2024-04-16 03:56:08 +02:00
"/README.md",
2024-04-25 19:58:55 +02:00
"/LICENSE",
2024-04-16 03:56:08 +02:00
]
2024-03-28 17:34:48 +01:00
2018-04-26 21:41:19 +02:00
[dependencies]
2024-05-20 18:11:19 +02:00
anyhow = "1.0.86"
2024-07-10 13:27:32 +02:00
clap = { version = "4.5.9", features = ["derive"] }
2024-04-04 20:21:55 +02:00
crossterm = "0.27.0"
2024-04-29 00:36:13 +02:00
hashbrown = "0.14.5"
2024-04-27 04:32:06 +02:00
notify-debouncer-mini = { version = "0.4.1", default-features = false }
2024-06-06 01:58:05 +02:00
os_pipe = "1.2.0"
2024-06-26 16:59:13 +02:00
ratatui = { version = "0.27.0", default-features = false, features = ["crossterm"] }
2024-07-10 16:51:34 +02:00
rustlings-macros = { path = "rustlings-macros", version = "=6.1.0" }
2024-07-02 01:45:55 +02:00
serde_json = "1.0.120"
serde.workspace = true
toml_edit.workspace = true
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"
2024-04-25 19:02:07 +02:00
[package.metadata.release]
pre-release-hook = ["./release-hook.sh"]