Skip to content

Commit

Permalink
chore: Fix missing feature "device" from clap dep
Browse files Browse the repository at this point in the history
  • Loading branch information
johan-bjareholt committed Dec 12, 2021
1 parent d1ef45e commit d81c461
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 2 deletions.
54 changes: 54 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aw-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fern = { version = "0.6", features = ["colored"] }
toml = "0.5"
gethostname = "0.2"
uuid = { version = "0.8", features = ["serde", "v4"] }
clap = "3.0.0-beta.5"
clap = { version = "3.0.0-beta.5", features = ["derive"] }

aw-datastore = { path = "../aw-datastore" }
aw-models = { path = "../aw-models" }
Expand Down
2 changes: 1 addition & 1 deletion aw-sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ chrono = { version = "0.4", features = ["serde"] }
serde = "1.0"
serde_json = "1.0"
reqwest = { version = "0.11", features = ["json", "blocking"] }
clap = "3.0.0-beta.5"
clap = { version = "3.0.0-beta.5", features = ["derive"] }
aw-server = { path = "../aw-server" }
aw-models = { path = "../aw-models" }
aw-datastore = { path = "../aw-datastore" }
Expand Down

0 comments on commit d81c461

Please sign in to comment.