mirror of https://github.com/hannobraun/Fornjot
Add dependency on Clap to `cuboid`
This commit is contained in:
parent
08b6f3286c
commit
0d07f23cee
|
@ -623,6 +623,7 @@ name = "cuboid"
|
|||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"clap",
|
||||
"fj-kernel",
|
||||
"fj-math",
|
||||
"fj-window",
|
||||
|
|
|
@ -8,6 +8,10 @@ edition = "2021"
|
|||
anyhow = "1.0.71"
|
||||
itertools = "0.10.5"
|
||||
|
||||
[dependencies.clap]
|
||||
version = "4.3.0"
|
||||
features = ["derive"]
|
||||
|
||||
[dependencies.fj-kernel]
|
||||
path = "../../crates/fj-kernel"
|
||||
|
||||
|
|
Loading…
Reference in New Issue