Initial commit

This commit is contained in:
2026-06-05 20:53:53 -05:00
commit f9a59e9a66
99 changed files with 15897 additions and 0 deletions

30
src-tauri/Cargo.toml Normal file
View File

@@ -0,0 +1,30 @@
[package]
name = "artificers-scrollwork"
version = "0.1.0"
edition = "2021"
[lib]
name = "artificers_scrollwork_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
tauri = { version = "2", features = [] }
tauri-plugin-dialog = "2"
tauri-plugin-shell = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rusqlite = { version = "0.31", features = ["bundled"] }
anyhow = "1"
uuid = { version = "1", features = ["v4"] }
byteorder = "1"
flate2 = "1"
image = { version = "0.25", features = ["dds"] }
once_cell = "1"
tokio = { version = "1", features = ["full"] }
walkdir = "2"
[features]
custom-protocol = ["tauri/custom-protocol"]