Krys4lide/tauri/Cargo.toml

24 lines
660 B
TOML
Raw Normal View History

2024-07-16 11:02:53 +02:00
[package]
name = "tauri"
version = "0.0.0"
description = "A Tauri App"
authors = ["you"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "1", features = [] }
2024-07-16 11:02:53 +02:00
[dependencies]
tauri = { version = "1", features = ["shell-open"] }
2024-07-16 11:02:53 +02:00
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2024-07-16 19:57:53 +02:00
axum = { version = "0.7.5", features = ["tokio", "http2"] }
futures = "0.3.30"
tower = "0.4.13"
2024-07-16 11:02:53 +02: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"]