Skip to content

Commit e3862cf

Browse files
committed
Implement windows support
1 parent 9d2145a commit e3862cf

File tree

2 files changed

+26
-23
lines changed

2 files changed

+26
-23
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: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,19 @@ 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"
12+
backtrace = "0.3.46"
13+
thiserror = "1.0.19"
14+
15+
[target.'cfg(target_os="linux")'.dependencies]
1316
tiny-nix-ipc = { git = "https://github.com/myfreeweb/tiny-nix-ipc", features = ["ser_json", "zero_copy"] }
1417
procfs = "0.7.8"
1518
nix = {git = "https://github.com/nix-rust/nix"}
16-
backtrace = "0.3.46"
17-
thiserror = "1.0.19"
19+
libc= "0.2.68"
20+
errno= "0.2.5"
1821

1922
[workspace]
2023
members = ["minion-ffi", ".", "minion-tests", "minion-cli"]

0 commit comments

Comments
 (0)