mirror of
https://github.com/spartanz51/tutabridge.git
synced 2026-06-24 10:54:32 +02:00
TutaBridge links Tuta's Rust SDK, which is part of the GPLv3-licensed tutanota project, so the bridge must carry the same license. Add the full GPLv3 text, set `license = "GPL-3.0-or-later"` on all three crates, and note it in the README.
22 lines
556 B
TOML
22 lines
556 B
TOML
[package]
|
|
name = "tutabridge-gui"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.84.0"
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tutabridge-core = { path = "../crates/bridge" }
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-shell = "2"
|
|
tauri-plugin-dialog = "2"
|
|
tokio = { version = "1.43", features = ["full"] }
|
|
tokio-rustls = { version = "0.26", features = ["ring"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
log = "0.4"
|
|
env_logger = "0.11"
|