Created workspace

This commit is contained in:
Lukas Wölfer
2025-07-26 13:59:12 +02:00
parent 36acad351e
commit cad18c3249
8 changed files with 18 additions and 9 deletions

View File

@@ -1,6 +1,3 @@
[package] [workspace]
name = "canvas" resolver = "3"
version = "0.1.0" members = ["canvas"]
edition = "2024"
[dependencies]

1
canvas/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/target

7
canvas/Cargo.lock generated Normal file
View File

@@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "canvas"
version = "0.1.0"

6
canvas/Cargo.toml Normal file
View File

@@ -0,0 +1,6 @@
[package]
name = "canvas"
version = "0.1.0"
edition = "2024"
[dependencies]

View File

@@ -51,5 +51,3 @@ struct CriteriaCard {
// Points depending on how often the criteria was met // Points depending on how often the criteria was met
points: Vec<u8>, points: Vec<u8>,
} }
fn main() {}

View File

@@ -1,4 +1,4 @@
use crate::{Card, Icon, Painting, icon_bitfield::IconBitfield}; use crate::{Icon, Painting, icon_bitfield::IconBitfield};
// There are 12 objectives/criteria in the base set // There are 12 objectives/criteria in the base set
#[derive(Debug)] #[derive(Debug)]