nox/src-tauri/Cargo.toml

32 lines
898 B
TOML
Raw Normal View History

2023-08-11 18:06:00 +02:00
[package]
name = "nox"
2023-08-12 02:47:43 +02:00
version = "0.0.1"
description = "blek! Nox"
authors = [ "b1ek <me@blek.codes>" ]
license = "MIT"
repository = "https://git.blek.codes/blek/nox"
2023-08-11 18:06:00 +02:00
edition = "2021"
[build-dependencies]
tauri-build = { version = "1.4", features = [] }
[dependencies]
tauri = { version = "1.4", features = [ "window-maximize", "window-show", "window-unmaximize", "window-close", "window-minimize", "window-hide", "window-start-dragging", "window-unminimize", "shell-open"] }
2023-08-23 11:34:38 +02:00
serde = { version = "1.0", features = ["derive"] }
2023-08-11 18:06:00 +02:00
serde_json = "1.0"
2023-08-23 11:34:38 +02:00
reqwest = "0.11.19"
2023-08-27 02:27:38 +02:00
matrix-sdk = { version = "0.6.2", features = ["sso-login"] }
url = "2.4.0"
2023-08-11 18:06:00 +02:00
[features]
# this feature is used for production builds or when `devPath` points to the filesystem
# DO NOT REMOVE!!
custom-protocol = ["tauri/custom-protocol"]
2023-08-11 18:41:09 +02:00
[profile.release]
lto = true
opt-level = "z"
strip = true
codegen-units = 1
panic = "abort"