chore: update cargo deps with new vendored deps' needs

This commit is contained in:
Jude Nelson
2023-08-28 11:06:27 -04:00
parent 4e306ce17c
commit 21144daba6
2 changed files with 15 additions and 0 deletions

View File

@@ -32,6 +32,15 @@ slog-json = { version = "2.3.0", optional = true }
chrono = "0.4.19"
libc = "0.2.82"
[target.'cfg(unix)'.dependencies]
nix = "0.23"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["consoleapi", "handleapi", "synchapi", "winbase"] }
[target.'cfg(windows)'.dev-dependencies]
winapi = { version = "0.3", features = ["fileapi", "processenv", "winnt"] }
[dependencies.serde_json]
version = "1.0"
features = ["arbitrary_precision", "unbounded_depth"]

View File

@@ -31,6 +31,12 @@ extern crate serde_derive;
#[macro_use]
extern crate serde_json;
#[cfg(unix)]
extern crate nix;
#[cfg(windows)]
extern crate winapi;
#[macro_use]
pub mod util;