Skip to content

Commit b28ed77

Browse files
committed
Remove redundant getopts dependencies
1 parent b8ce18f commit b28ed77

File tree

4 files changed

+1
-5
lines changed

4 files changed

+1
-5
lines changed

Cargo.lock

-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ast/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ doctest = false
1111

1212
[dependencies]
1313
unicode-segmentation = "^1.8"
14-
getopts = "^0.2"
1514
location = { path = "../location" }
1615

1716
[dev-dependencies]

compiler/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ ast = { path = "../ast" }
1515
types = { path = "../types" }
1616
location = { path = "../location" }
1717
unicode-width = "^0.2"
18-
getopts = "^0.2"
1918
fnv = "^1.0"
2019
blake3 = "^1.5"
2120
inkwell = { version = "^0.5", features = ["llvm17-0"] }

deny.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
2525
multiple-versions = "warn"
2626
wildcards = "allow"
2727
highlight = "all"
28-
skip = [{ name = "bitflags" }]
28+
skip = [{ name = "unicode-width" }]
2929
skip-tree = [
3030
{ name = "windows-sys", depth = 5 },
3131
]

0 commit comments

Comments
 (0)