Initial template commit
This commit is contained in:
61
Cargo.toml
Normal file
61
Cargo.toml
Normal file
@@ -0,0 +1,61 @@
|
||||
[workspace]
|
||||
members = ["frontend", "src-tauri", "tests"]
|
||||
resolver = "2"
|
||||
|
||||
[workspace.package]
|
||||
version = "0.0.0"
|
||||
authors = ["Stephen Power"]
|
||||
categories = ["wasm", "web-programming"]
|
||||
edition = "2021"
|
||||
keywords = ["tauri", "leptos", "dprint", "tailwind", "daisyui", "helix", "wasm"]
|
||||
license = "AGPL-3.0"
|
||||
readme = "README.md"
|
||||
repository = "88.80.188.133:3000/opensourcecheemsburgers/template"
|
||||
description = "A template."
|
||||
|
||||
[workspace.lints.rust]
|
||||
unsafe_code = "forbid"
|
||||
|
||||
[workspace.lints.clippy]
|
||||
all = "warn"
|
||||
pedantic = "warn"
|
||||
nursery = "warn"
|
||||
cargo = "warn"
|
||||
|
||||
[profile.release]
|
||||
panic = "abort"
|
||||
codegen-units = 1
|
||||
lto = "fat"
|
||||
opt-level = 3
|
||||
strip = true
|
||||
|
||||
[profile.dev]
|
||||
panic = "abort"
|
||||
opt-level = 1
|
||||
codegen-units = 256
|
||||
lto = "off"
|
||||
incremental = true
|
||||
debug = false # Enable if debugging is necessary.
|
||||
|
||||
[profile.dev.package."*"]
|
||||
opt-level = 3
|
||||
|
||||
[workspace.dev-dependencies]
|
||||
rusty-hook = "0.11.2"
|
||||
wasm-bindgen-test = "0.3.0"
|
||||
|
||||
[workspace.dependencies]
|
||||
console_error_panic_hook = "0.1.7"
|
||||
gloo = "0.11.0"
|
||||
leptos = { version = "0.7.7", features = ["csr", "nightly"] }
|
||||
phosphor-leptos = "0.7.0"
|
||||
serde = { version = "1.0.218", features = ["derive"] }
|
||||
serde_json = "1.0.139"
|
||||
tailwind-css = "0.13.0"
|
||||
tauri = { git = "https://github.com/tauri-apps/tauri/", branch = "refactor/android-dev", features = ["config-toml"] }
|
||||
tauri-build = { version = "2.0.6", features = ["config-toml"] }
|
||||
thirtyfour = "0.34.0"
|
||||
thiserror = "2.0.11"
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
wasm-bindgen = "0.2.100"
|
||||
web-sys = "0.3.77"
|
||||
Reference in New Issue
Block a user