commit 60bc14bf3e51bb4f0a54e2704ddc76ead7c8fb04 Author: FIGBERT <figbert@figbert.com> Date: Mon, 26 Feb 2024 14:28:07 -0800 Initial commit Diffstat:
A | .gitignore | | | 1 | + |
A | Cargo.toml | | | 8 | ++++++++ |
A | src/main.rs | | | 3 | +++ |
3 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.toml b/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "css-system-colors" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/src/main.rs b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}