-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathCargo.toml
31 lines (27 loc) · 1.2 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "wayland-protocols-misc"
version = "0.3.6"
documentation = "https://docs.rs/wayland-protocols-misc/"
repository = "https://github.com/smithay/wayland-rs"
authors = ["Elinor Berger <[email protected]>"]
license = "MIT"
keywords = ["wayland", "client", "server", "protocol", "extension"]
description = "Generated API for misc and deprecated wayland protocol extensions"
categories = ["gui", "api-bindings"]
edition = "2021"
rust-version = "1.65"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
wayland-scanner = { version = "0.31.6", path = "../wayland-scanner" }
wayland-backend = { version = "0.3.8", path = "../wayland-backend" }
wayland-client = { version = "0.31.8", path = "../wayland-client", optional = true }
wayland-server = { version = "0.31.7", path = "../wayland-server", optional = true }
wayland-protocols = { version = "0.32.6", path = "../wayland-protocols", features=["unstable"] }
bitflags = "2"
[features]
client = ["wayland-client", "wayland-protocols/client"]
server = ["wayland-server", "wayland-protocols/server"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]