diff options
Diffstat (limited to 'utils/Cargo.toml')
| -rw-r--r-- | utils/Cargo.toml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/utils/Cargo.toml b/utils/Cargo.toml index 6fac1a1..c80880d 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -2,13 +2,20 @@ name = "nixos-wsl-utils" version = "0.1.0" edition = "2021" +# Keep this in sync with NixOS stable +rust-version = "1.69.0" [dependencies] anyhow = { version = "1.0.75", features = ["backtrace"] } nix = { version = "0.27.1", features = ["mount", "process"] } log = "0.4.20" kernlog = "0.3.1" -clap = { version = "4.1.4", features = ["derive"] } + +# pinned to prevent running over Rust 1.69 +clap = { version = "<4.4", features = ["derive"] } +clap_lex = "<0.5.1" +anstyle = "<1.0.3" +anstyle-parse = "<0.2.2" [[bin]] name = "systemd-shim" |
