Making the project into a workspace
All checks were successful
Rust Checks / checks (push) Successful in 7s
Rust Checks / checks (pull_request) Successful in 7s

This commit is contained in:
Tipragot 2024-02-06 20:59:22 +01:00
parent 2cbf784840
commit b9c219a726
3 changed files with 15 additions and 13 deletions

View file

@ -1,19 +1,11 @@
[package] [workspace]
name = "border-wars" members = ["crates/*"]
version = "0.1.0" resolver = "2"
edition = "2021"
description = "An online turn based game."
repository = "https://git.tipragot.fr/corentin/border-wars.git"
authors = ["corentin"]
[lints.rust] [workspace.lints.rust]
missing_docs = "warn" missing_docs = "warn"
[lints.rustdoc] [workspace.lints.clippy]
missing_doc_code_examples = "warn"
private_doc_tests = "warn"
[lints.clippy]
missing_docs_in_private_items = "warn" missing_docs_in_private_items = "warn"
unwrap_in_result = "warn" unwrap_in_result = "warn"
unwrap_used = "warn" unwrap_used = "warn"

View file

@ -0,0 +1,10 @@
[package]
name = "border-wars"
version = "0.1.0"
edition = "2021"
description = "An online turn based game."
repository = "https://git.tipragot.fr/corentin/border-wars.git"
authors = ["corentin"]
[lints]
workspace = true