Skip to content

Commit fb6772d

Browse files
committed
Implement windows support
1 parent 1099202 commit fb6772d

File tree

2 files changed

+27
-24
lines changed

2 files changed

+27
-24
lines changed

Cargo.lock

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,20 @@ authors = ["Mikail Bagishov <bagishov.mikail@yandex.ru>"]
55
edition = "2018"
66

77
[dependencies]
8-
libc= "0.2.68"
9-
errno= "0.2.5"
8+
109
rand = "0.7.3"
1110
serde = { version = "1.0.106", features = ["derive"] }
1211
serde_json = "1.0.51"
13-
tiny-nix-ipc = { git = "https://github.com/myfreeweb/tiny-nix-ipc", features = ["ser_json", "zero_copy"] }
14-
procfs = "0.7.8"
15-
nix = {git = "https://github.com/nix-rust/nix"}
1612
backtrace = "0.3.46"
1713
thiserror = "1.0.19"
1814
anyhow = "1.0.32"
1915

16+
[target.'cfg(target_os="linux")'.dependencies]
17+
tiny-nix-ipc = { git = "https://github.com/myfreeweb/tiny-nix-ipc", features = ["ser_json", "zero_copy"] }
18+
procfs = "0.7.8"
19+
nix = {git = "https://github.com/nix-rust/nix"}
20+
libc = "0.2.68"
21+
errno = "0.2.5"
22+
2023
[workspace]
2124
members = ["minion-ffi", ".", "minion-tests", "minion-cli"]

0 commit comments

Comments
 (0)