2 Commits

Author SHA1 Message Date
Quaternions ec25f11ca5 card_game v0.2.0 2026-05-18 13:12:19 -07:00
Quaternions f8dd9e008c workspace dependencies 2026-05-18 13:12:03 -07:00
5 changed files with 9 additions and 5 deletions
Generated
+1 -1
View File
@@ -22,7 +22,7 @@ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
[[package]]
name = "card_game"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"arrayvec",
]
+4
View File
@@ -6,6 +6,10 @@ members = [
]
resolver = "3"
[workspace.dependencies]
card_game = { version = "0.2.0", path = "card_game" }
klondike = { version = "0.1.0", path = "klondike" }
[workspace.lints.rust]
# unsafe_code = "forbid"
# missing_docs = "warn"
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "card_game"
version = "0.1.0"
version = "0.2.0"
edition = "2024"
repository = "https://git.aleshym.co/Quaternions/card_game"
license = "MIT OR Apache-2.0"
+2 -2
View File
@@ -4,6 +4,6 @@ version = "0.1.0"
edition = "2024"
[dependencies]
card_game = { version = "0.1.0", path = "../card_game" }
klondike = { version = "0.1.0", path = "../klondike" }
card_game.workspace = true
klondike.workspace = true
rand = { version = "0.10.1", default-features = false, features = ["thread_rng"] }
+1 -1
View File
@@ -4,5 +4,5 @@ version = "0.1.0"
edition = "2024"
[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"] }