workspace dependencies
This commit is contained in:
@@ -6,6 +6,10 @@ members = [
|
|||||||
]
|
]
|
||||||
resolver = "3"
|
resolver = "3"
|
||||||
|
|
||||||
|
[workspace.dependencies]
|
||||||
|
card_game = { version = "0.1.0", path = "card_game" }
|
||||||
|
klondike = { version = "0.1.0", path = "klondike" }
|
||||||
|
|
||||||
[workspace.lints.rust]
|
[workspace.lints.rust]
|
||||||
# unsafe_code = "forbid"
|
# unsafe_code = "forbid"
|
||||||
# missing_docs = "warn"
|
# missing_docs = "warn"
|
||||||
|
|||||||
@@ -4,6 +4,6 @@ version = "0.1.0"
|
|||||||
edition = "2024"
|
edition = "2024"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
card_game = { version = "0.1.0", path = "../card_game" }
|
card_game.workspace = true
|
||||||
klondike = { version = "0.1.0", path = "../klondike" }
|
klondike.workspace = true
|
||||||
rand = { version = "0.10.1", default-features = false, features = ["thread_rng"] }
|
rand = { version = "0.10.1", default-features = false, features = ["thread_rng"] }
|
||||||
|
|||||||
+1
-1
@@ -4,5 +4,5 @@ version = "0.1.0"
|
|||||||
edition = "2024"
|
edition = "2024"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
card_game = { version = "0.1.0", path = "../card_game" }
|
card_game.workspace = true
|
||||||
rand = { version = "0.10.1", default-features = false, features = ["std_rng"] }
|
rand = { version = "0.10.1", default-features = false, features = ["std_rng"] }
|
||||||
|
|||||||
Reference in New Issue
Block a user