46 lines
1.2 KiB
TOML
46 lines
1.2 KiB
TOML
[package]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
description = "A Tauri App"
|
|
authors = ["you"]
|
|
license = ""
|
|
repository = ""
|
|
default-run = "app"
|
|
edition = "2021"
|
|
rust-version = "1.57"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "1.0.4", features = [] }
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tauri = { version = "1.0.5", features = ["api-all", "system-tray"] }
|
|
sodiumoxide = "0.2.7"
|
|
tokio = { version = ">=1.19", features = ["full"] }
|
|
sqlx = { version = "0.6.2", features = ["sqlite", "runtime-tokio-rustls"] }
|
|
netstat2 = "0.9.1"
|
|
sysinfo = "0.26.8"
|
|
aws-types = "0.52.0"
|
|
aws-sdk-sts = "0.22.0"
|
|
aws-smithy-types = "0.52.0"
|
|
aws-config = "0.52.0"
|
|
thiserror = "1.0.38"
|
|
once_cell = "1.16.0"
|
|
strum = "0.24"
|
|
strum_macros = "0.24"
|
|
auto-launch = "0.4.0"
|
|
|
|
[features]
|
|
# by default Tauri runs in production mode
|
|
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
|
|
default = [ "custom-protocol" ]
|
|
# this feature is used used for production builds where `devPath` points to the filesystem
|
|
# DO NOT remove this
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|
|
|
|
# [profile.dev.build-override]
|
|
# opt-level = 3
|