aboutsummaryrefslogtreecommitdiffstats
path: root/deny.toml
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2023-08-06 18:30:40 -0400
committerJesse Luehrs <doy@tozt.net>2023-08-06 18:30:40 -0400
commit54e8bf4f2e91407be2054cd38fea81ba830303fd (patch)
tree2ee35f81282d8af91450969f89b42623fd11ec3d /deny.toml
parentdb967551c7d7ee4f38b4fb6ee8d4dd998ad9c871 (diff)
downloadpty-process-54e8bf4f2e91407be2054cd38fea81ba830303fd.tar.gz
pty-process-54e8bf4f2e91407be2054cd38fea81ba830303fd.zip
convert to rustix
it seems more maintained, and hopefully this will fix compile issues on macos
Diffstat (limited to 'deny.toml')
-rw-r--r--deny.toml8
1 files changed, 8 insertions, 0 deletions
diff --git a/deny.toml b/deny.toml
index 2f0b764..1ac6f74 100644
--- a/deny.toml
+++ b/deny.toml
@@ -10,6 +10,14 @@ yanked = "deny"
unsound = "deny"
[bans]
+multiple-versions = "deny"
+wildcards = "deny"
+
+skip = [
+ # this is only a dev dependency (between nix and rustix)
+ { name = "bitflags", version = "1.3.2" },
+ { name = "bitflags", version = "2.3.3" },
+]
[licenses]
allow = ["MIT", "Apache-2.0", "Unicode-DFS-2016"]