rypi-scrapper/src-tauri/Cargo.toml

35 lines
1.3 KiB
TOML
Raw Permalink Normal View History

2023-04-06 16:18:26 +02:00
[package]
2023-05-02 16:51:31 +02:00
name = "app"
2023-04-06 16:18:26 +02:00
version = "0.0.0"
2023-04-23 21:09:18 +02:00
description = "Scrapping Habbo gamedata and assets"
2023-05-02 16:51:31 +02:00
authors = ["Walidoux"]
license = "MIT"
repository = "https://github.com/RypiDev/rypi-scrapper"
default-run = "app"
2023-04-06 16:18:26 +02:00
edition = "2021"
2023-05-02 16:51:31 +02:00
build = "src/build.rs"
2023-04-06 16:18:26 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "1.2", features = [] }
[dependencies]
tauri = { version = "1.2", features = ["fs-create-dir", "fs-exists", "fs-read-dir", "fs-remove-dir", "fs-write-file", "http-all", "path-all", "window-close", "window-minimize", "window-start-dragging"] }
2023-05-02 16:51:31 +02:00
tauri-specta = { version = "1.0.0", features = ["typescript"] }
2023-04-06 16:18:26 +02:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2023-05-02 16:51:31 +02:00
specta = "1.0.3"
quickxml_to_serde = "0.5.0"
2023-04-06 16:18:26 +02:00
[features]
# this feature is used for production builds or when `devPath` points to the filesystem
custom-protocol = ["tauri/custom-protocol"]
2023-05-02 16:51:31 +02:00
[profile.release]
strip = true # Automatically strip symbols from the binary
panic = "abort" # Strip expensive panic clean-up logic
codegen-units = 1 # Compile crates one after another so the compiler can optimize better
lto = true # Enables link to optimizations
opt-level = "s" # Optimize for binary size