robot-rust/Cargo.toml
2020-12-16 04:00:19 +09:00

23 lines
641 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 }
serde_json = { version = "1.0", optional = true }
once_cell = "1.5.2"
[features]
with_serde = ["serde", "serde_derive", "serde_json"]
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3.9", features = ["winuser", "errhandlingapi"] }
[build-dependencies]
pkg-config = "0.3.19"