Files
Anthony d1b9d486ab Adopt GPL-3.0-or-later license
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.
2026-05-29 14:59:48 +02:00

22 lines
512 B
TOML

[workspace]
members = ["crates/bridge", "src-tauri"]
exclude = ["tuta-repo"]
resolver = "2"
[package]
name = "tutabridge"
version = "0.1.0"
edition = "2021"
rust-version = "1.84.0"
license = "GPL-3.0-or-later"
[dependencies]
tutabridge-core = { path = "crates/bridge" }
tuta-sdk = { path = "tuta-repo/tuta-sdk/rust/sdk", features = ["net"] }
tokio = { version = "1.43", features = ["full"] }
tokio-rustls = { version = "0.26", features = ["ring"] }
log = "0.4"
env_logger = "0.11"
anyhow = "1"
rpassword = "7"