robot-rust/Cargo.toml

22 lines
577 B
TOML
Raw Normal View History

2020-11-23 01:50:12 +00:00
[package]
name = "robot-rust"
2020-11-25 04:37:18 +00:00
version = "0.0.1"
authors = ["richard park <richard.park@loafle.com>"]
2020-11-23 01:50:12 +00:00
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-11-25 04:37:18 +00:00
serde = { version = "1.0.117", optional = true }
serde_derive = { version = "1.0.117", optional = true }
2020-12-11 14:47:37 +00:00
once_cell = "1.5.2"
2020-11-25 04:37:18 +00:00
[features]
with_serde = ["serde", "serde_derive"]
[target.'cfg(target_os = "windows")'.dependencies]
2020-11-26 02:59:04 +00:00
winapi = { version = "0.3.9", features = ["winuser", "errhandlingapi"] }
2020-11-25 04:37:18 +00:00
[build-dependencies]
pkg-config = "0.3.19"