Add LICENSE (GPL-3.0-or-later), README with build/install/usage documentation, and license field to Cargo.toml.
18 lines
542 B
TOML
18 lines
542 B
TOML
[package]
|
|
name = "xembed-sni-proxy"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Lightweight XEmbed-to-SNI proxy for Wayland compositors"
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[dependencies]
|
|
x11rb = { version = "0.13", features = ["composite", "damage", "xtest"] }
|
|
zbus = { version = "5", default-features = false, features = ["tokio"] }
|
|
tokio = { version = "1", features = ["rt", "macros", "signal", "sync", "net"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = true
|