mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-24 22:47:32 -05:00
Update Cargo.toml files
This commit is contained in:
parent
4ef345e706
commit
8ebd2f9df2
2 changed files with 12 additions and 4 deletions
13
Cargo.toml
13
Cargo.toml
|
@ -8,12 +8,14 @@ exclude = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "6.0.0-alpha.0"
|
version = "6.0.0-beta.0"
|
||||||
authors = [
|
authors = [
|
||||||
"Liv <mokou@fastmail.com>",
|
"Liv <mokou@fastmail.com>",
|
||||||
|
"Mo Bitar <mo8it@proton.me>",
|
||||||
|
# Alumni
|
||||||
"Carol (Nichols || Goulding) <carol.nichols@gmail.com>",
|
"Carol (Nichols || Goulding) <carol.nichols@gmail.com>",
|
||||||
"Mo <mo8it@proton.me>",
|
|
||||||
]
|
]
|
||||||
|
repository = "https://github.com/rust-lang/rustlings"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
|
@ -27,8 +29,13 @@ description = "Small exercises to get you used to reading and writing Rust code!
|
||||||
default-run = "rustlings"
|
default-run = "rustlings"
|
||||||
version.workspace = true
|
version.workspace = true
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
keywords = [
|
||||||
|
"exercise",
|
||||||
|
"learning",
|
||||||
|
]
|
||||||
include = [
|
include = [
|
||||||
"/exercises/",
|
"/exercises/",
|
||||||
"/info.toml",
|
"/info.toml",
|
||||||
|
@ -44,7 +51,7 @@ crossterm = "0.27.0"
|
||||||
hashbrown = "0.14.3"
|
hashbrown = "0.14.3"
|
||||||
notify-debouncer-mini = "0.4.1"
|
notify-debouncer-mini = "0.4.1"
|
||||||
ratatui = "0.26.2"
|
ratatui = "0.26.2"
|
||||||
rustlings-macros = { path = "rustlings-macros", version = "6.0.0-alpha.0" }
|
rustlings-macros = { path = "rustlings-macros", version = "6.0.0-beta.0" }
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
toml_edit.workspace = true
|
toml_edit.workspace = true
|
||||||
which = "6.0.1"
|
which = "6.0.1"
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
[package]
|
[package]
|
||||||
name = "rustlings-macros"
|
name = "rustlings-macros"
|
||||||
description = "A macros crate intended to be only used by rustlings"
|
description = "A macros crate intended to be used only by Rustlings"
|
||||||
version.workspace = true
|
version.workspace = true
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue