20 lines
406 B
TOML
20 lines
406 B
TOML
[package]
|
|
name = "hello-dioxus"
|
|
version = "0.1.0"
|
|
authors = ["nissy-dev <nd.12021218@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
dioxus = { workspace = true, features = ["launch", "web"] }
|
|
dioxus-free-icons = { path = "../lib", features = ["font-awesome-brands"] }
|
|
|
|
log = "0.4.6"
|
|
|
|
# WebAssembly Debug
|
|
wasm-logger = "0.2.0"
|
|
console_error_panic_hook = "0.1.7"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = 's'
|