Skip to content

Commit

Permalink
nvim-rs: Switch back to my fork
Browse files Browse the repository at this point in the history
Looks like the neovim API has gotten a bit out of date in nvim-rs, and as a
result we are seeing random crashes due to the return arguments of
functions not matching what they should. Fix that by updating it ourselves
in our own fork and switch neovim-gtk over to using that.
  • Loading branch information
Lyude committed Sep 10, 2024
1 parent 629076b commit b226dee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async-trait = "0.1.0"
futures = { version = "0.3.0", features = ["io-compat", "thread-pool"] }
tokio = { version = "1.0", features = ["full"] }
tokio-util = { version = "0.7.0", features = ["full"] }
nvim-rs = { version = "0.7.0", features = ["use_tokio"] }
nvim-rs = { version = "0.8.0-pre", features = ["use_tokio"], git = "https://github.com/Lyude/nvim-rs.git", branch = "nvim-gtk-fork" }
phf = "0.11.0"
log = "0.4.0"
env_logger = "0.11.0"
Expand Down

0 comments on commit b226dee

Please sign in to comment.