robot-rust/Cargo.toml
crusader ea09dc582d ing
2020-11-26 11:59:04 +09:00

22 lines
579 B
TOML

[package]
name = "robot-rust"
version = "0.0.1"
authors = ["richard park <richard.park@loafle.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0.117", optional = true }
serde_derive = { version = "1.0.117", optional = true }
lazy_static = "1.4.0"
[features]
with_serde = ["serde", "serde_derive"]
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3.9", features = ["winuser", "errhandlingapi"] }
[build-dependencies]
pkg-config = "0.3.19"