You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
742 B

[package]
name = "Underlayer"
version = "0.3.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "underlayer"
path = "src/lib.rs"
[[example]]
name = "test"
path = "src/examples/main.rs"
[features]
default = []
crossbeam = ["crossbeam-channel"]
[dependencies]
log = "0.4.19"
[dependencies.crossbeam-channel]
version = "0.5"
optional = true
[target.'cfg(windows)'.dependencies]
windows = {version = "0.48.0", features = ["Win32_UI_Accessibility", "Win32_Foundation", "Win32_UI_WindowsAndMessaging", "Win32_Graphics_Gdi", "Win32_System_Com", "Win32_System_Ole"]}
[target.'cfg(unix)'.dependencies]
x11rb = "0.12.0"
[dev-dependencies]
simple_logger = "4.2.0"