Created workspace
This commit is contained in:
@@ -1,6 +1,3 @@
|
||||
[package]
|
||||
name = "canvas"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
[workspace]
|
||||
resolver = "3"
|
||||
members = ["canvas"]
|
||||
1
canvas/.gitignore
vendored
Normal file
1
canvas/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
/target
|
||||
7
canvas/Cargo.lock
generated
Normal file
7
canvas/Cargo.lock
generated
Normal 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
6
canvas/Cargo.toml
Normal file
@@ -0,0 +1,6 @@
|
||||
[package]
|
||||
name = "canvas"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
@@ -51,5 +51,3 @@ struct CriteriaCard {
|
||||
// Points depending on how often the criteria was met
|
||||
points: Vec<u8>,
|
||||
}
|
||||
|
||||
fn main() {}
|
||||
@@ -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
|
||||
#[derive(Debug)]
|
||||
Reference in New Issue
Block a user