Skip to content

Commit

Permalink
chore: switch to local deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jtroo committed Apr 15, 2024
1 parent 7539fa6 commit 5ffab78
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 54 deletions.
51 changes: 5 additions & 46 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ rustc-hash = "1.1.0"
simplelog = "0.12.0"
serde_json = { version = "1", features = ["alloc"], default_features = false, optional = true }

kanata-keyberon = "0.160.4"
kanata-parser = "0.160.4"
kanata-tcp-protocol = "0.160.4"
# kanata-keyberon = "0.160.4"
# kanata-parser = "0.160.4"
# kanata-tcp-protocol = "0.160.4"
# Uncomment below and comment out above for testing local changes.
# Otherwise any changes to the local files will not reflect in the compiled
# binary.
# kanata-keyberon = { path = "keyberon" }
# kanata-parser = { path = "parser" }
# kanata-tcp-protocol = { path = "tcp_protocol" }
kanata-keyberon = { path = "keyberon" }
kanata-parser = { path = "parser" }
kanata-tcp-protocol = { path = "tcp_protocol" }

[target.'cfg(target_os = "macos")'.dependencies]
karabiner-driverkit = "0.1.3"
Expand Down
4 changes: 2 additions & 2 deletions parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ rustc-hash = "1.1.0"
miette = { version = "5.7.0", features = ["fancy"] }
thiserror = "1.0.38"

kanata-keyberon = "0.160.4"
# kanata-keyberon = "0.160.4"
# Uncomment below and comment out above for testing local changes.
# Otherwise any changes to the local files will not reflect in the compiled
# binary.
# kanata-keyberon = { path = "../keyberon" }
kanata-keyberon = { path = "../keyberon" }

[features]
cmd = []
Expand Down

0 comments on commit 5ffab78

Please sign in to comment.