diff options
| author | nzbr <mail@nzbr.de> | 2023-09-29 23:25:53 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-29 23:25:53 +0200 |
| commit | 8735bdfa5fdfa6e90d944ff9f5f806668b53eacb (patch) | |
| tree | 64148d00bbc6f8e1d7ba099cfbf31123113db2f8 /utils/Cargo.toml | |
| parent | e7d93d0f478b6fbb47c00d03449dc3d08b90abb7 (diff) | |
| parent | ff1413aa34c525bf01145b40b99acfb7868ab285 (diff) | |
Merge pull request #295 from nix-community/prep-release
New release preparation
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" |
