vigi/src-tauri/Cargo.toml

34 lines
916 B
TOML
Raw Normal View History

2024-07-28 00:00:10 +03:00
[package]
name = "vigi"
2024-07-30 22:30:35 +03:00
version = "1.0.0-pre0"
2024-07-29 00:10:26 +03:00
description = "Browser for dalet, text, gemtext (gemini protocol included) with native support of txtdot proxy and local txtdot engines"
authors = ["artegoser"]
2024-07-28 00:00:10 +03:00
edition = "2021"
2024-07-29 00:10:26 +03:00
license = "AGPL-3.0"
2024-07-28 00:00:10 +03:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "1", features = [] }
[dependencies]
2024-07-29 00:10:26 +03:00
tauri = { version = "1", features = [
"window-hide",
"window-start-dragging",
"window-close",
"window-minimize",
"window-show",
"window-unminimize",
"window-unmaximize",
"window-maximize",
"shell-open",
] }
2024-07-28 00:00:10 +03:00
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2024-07-30 15:36:11 +03:00
dalet = "1.0.0-pre3"
2024-07-29 00:10:26 +03:00
reqwest = "0.12.5"
2024-07-28 00:00:10 +03:00
[features]
# This feature is used for production builds or when a dev server is not specified, DO NOT REMOVE!!
custom-protocol = ["tauri/custom-protocol"]