27 lines
727 B
TOML
27 lines
727 B
TOML
[package]
|
|
name = "sheet-organizer"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# Core library
|
|
relm4 = "0.6.2"
|
|
# relm4-macros = "0.6.2"
|
|
# Optional: reusable components
|
|
relm4-components = "0.6.2"
|
|
# Optional: icons
|
|
relm4-icons = { version = "0.6.0", features = ["plus"] }
|
|
|
|
walkdir = "2" # For traversing directories recursively
|
|
opener = "0.6.1" # For opening files with the systems default application
|
|
|
|
sqlx = { version = "0.7", features = [ "runtime-tokio", "sqlite", "migrate", "macros" ] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
blake3 = "1.5.0"
|
|
dotenvy = "0.15.7"
|
|
|
|
[profile.dev.package.sqlx-macros]
|
|
opt-level = 3
|