Skip to content

Commit

Permalink
fix(hydroflow): avoid pulling in clap as a dependency (#1578)
Browse files Browse the repository at this point in the history
We only need it for examples, so this reduces compilation burden for
`trybuild`.
  • Loading branch information
shadaj authored Nov 20, 2024
1 parent 69668c3 commit 64578f3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion hydroflow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ bytes = "1.1.0"
futures = "0.3.0"
hydroflow_deploy_integration = { optional = true, path = "../hydro_deploy/hydroflow_deploy_integration", version = "^0.10.0" }
hydroflow_datalog = { optional = true, path = "../hydroflow_datalog", version = "^0.10.0" }
hydroflow_lang = { path = "../hydroflow_lang", version = "^0.10.0", features = [ "clap-derive" ] }
hydroflow_lang = { path = "../hydroflow_lang", version = "^0.10.0" }
hydroflow_macro = { optional = true, path = "../hydroflow_macro", version = "^0.10.0" }
itertools = "0.10.0"
lattices = { path = "../lattices", version = "^0.5.8", features = [ "serde" ] }
Expand Down Expand Up @@ -81,6 +81,8 @@ tokio-util = { version = "0.7.5", features = [ "codec" ] }
getrandom = { version = "0.2.6", features = [ "js" ] }

[dev-dependencies]
hydroflow_lang = { path = "../hydroflow_lang", version = "^0.10.0", features = [ "clap-derive" ] }

chrono = { version = "0.4.20", features = [ "serde", "clock" ], default-features = false }
clap = { version = "4.5.4", features = [ "derive" ] }
colored = "2.0"
Expand Down

0 comments on commit 64578f3

Please sign in to comment.