mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-19 07:26:59 +01:00
73 lines
2.3 KiB
TOML
73 lines
2.3 KiB
TOML
workspace = { members = ["grpc"] }
|
|
[package]
|
|
name = "yaak-app"
|
|
version = "0.0.0"
|
|
description = "A network protocol testing utility app"
|
|
authors = ["Gregory Schier"]
|
|
license = "MIT"
|
|
repository = "https://github.com/gschier/yaak-app"
|
|
edition = "2021"
|
|
|
|
[profile.release]
|
|
strip = true # Automatically strip symbols from the binary.
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "1.2", features = [] }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
objc = "0.2.7"
|
|
cocoa = "0.25.0"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
openssl-sys = { version = "0.9", features = ["vendored"] } # For Ubuntu installation to work
|
|
|
|
[dependencies]
|
|
base64 = "0.21.0"
|
|
boa_engine = { version = "0.17.3", features = ["annex-b"] }
|
|
boa_runtime = { version = "0.17.3" }
|
|
chrono = { version = "0.4.31", features = ["serde"] }
|
|
futures = "0.3.26"
|
|
http = "0.2.8"
|
|
rand = "0.8.5"
|
|
reqwest = { version = "0.11.23", features = ["multipart", "cookies", "gzip", "brotli", "deflate"] }
|
|
cookie = { version = "0.18.0" }
|
|
serde = { version = "1.0.195", features = ["derive"] }
|
|
serde_json = { version = "1.0.111", features = ["raw_value"] }
|
|
sqlx = { version = "0.7.2", features = ["sqlite", "runtime-tokio-rustls", "json", "chrono", "time"] }
|
|
tauri = { version = "1.5.2", features = [
|
|
"config-toml",
|
|
"devtools",
|
|
"dialog-open",
|
|
"dialog-save",
|
|
"fs-read-file",
|
|
"os-all",
|
|
"protocol-asset",
|
|
"shell-open",
|
|
"updater",
|
|
"window-close",
|
|
"window-maximize",
|
|
"window-minimize",
|
|
"window-set-decorations",
|
|
"window-set-title",
|
|
"window-start-dragging",
|
|
"window-unmaximize",
|
|
] }
|
|
tauri-plugin-window-state = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
|
|
tauri-plugin-log = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1", features = ["colored"] }
|
|
tokio = { version = "1.25.0", features = ["sync"] }
|
|
uuid = "1.3.0"
|
|
log = "0.4.20"
|
|
datetime = "0.5.2"
|
|
window-shadows = "0.2.2"
|
|
reqwest_cookie_store = "0.6.0"
|
|
grpc = { path = "./grpc" }
|
|
tokio-stream = "0.1.14"
|
|
|
|
[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"]
|