创建基础项目结构。

This commit is contained in:
徐涛
2024-12-24 14:08:23 +08:00
commit c2df14a425
22 changed files with 1490 additions and 0 deletions

10
color-module/Cargo.toml Normal file
View File

@@ -0,0 +1,10 @@
[package]
name = "color-module"
version = "0.1.0"
edition = "2021"
[dependencies]
color-name = "1.1.0"
palette = { version = "0.7.6", features = ["serde"] }
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.134"

3
color-module/src/main.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}