mirror of
https://github.com/kristoferssolo/des-rs.git
synced 2025-12-20 11:04:38 +00:00
refactor: use workspace
This commit is contained in:
parent
384c96d36f
commit
bd5a5748d1
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -24,7 +24,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "bba18ee93d577a8428902687bcc2b6b45a56b1981a1f6d779731c86cc4c5db18"
|
checksum = "bba18ee93d577a8428902687bcc2b6b45a56b1981a1f6d779731c86cc4c5db18"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "des"
|
name = "des-lib"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"claims",
|
"claims",
|
||||||
|
|||||||
14
Cargo.toml
14
Cargo.toml
@ -1,17 +1,13 @@
|
|||||||
[package]
|
[workspace]
|
||||||
name = "des"
|
resolver = "2"
|
||||||
version = "0.1.0"
|
members = ["des-lib"]
|
||||||
authors = ["Kristofers Solo <dev@kristofers.xyz>"]
|
|
||||||
edition = "2024"
|
|
||||||
|
|
||||||
[dependencies]
|
[workspace.dependencies]
|
||||||
|
|
||||||
[dev-dependencies]
|
|
||||||
claims = "0.8"
|
claims = "0.8"
|
||||||
rand = "0.9"
|
rand = "0.9"
|
||||||
rstest = "0.26"
|
rstest = "0.26"
|
||||||
|
|
||||||
[lints.clippy]
|
[workspace.lints.clippy]
|
||||||
pedantic = "warn"
|
pedantic = "warn"
|
||||||
nursery = "warn"
|
nursery = "warn"
|
||||||
unwrap_used = "warn"
|
unwrap_used = "warn"
|
||||||
|
|||||||
15
des-lib/Cargo.toml
Normal file
15
des-lib/Cargo.toml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
[package]
|
||||||
|
name = "des-lib"
|
||||||
|
version = "0.1.0"
|
||||||
|
authors = ["Kristofers Solo <dev@kristofers.xyz>"]
|
||||||
|
edition = "2024"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
|
||||||
|
[dev-dependencies]
|
||||||
|
claims.workspace = true
|
||||||
|
rand.workspace = true
|
||||||
|
rstest.workspace = true
|
||||||
|
|
||||||
|
[lints]
|
||||||
|
workspace = true
|
||||||
Loading…
Reference in New Issue
Block a user