Skip to content

Commit ba20e1e

Browse files
committed
Fix all compillation errors
cargo-fmt - sorry
1 parent c87083a commit ba20e1e

12 files changed

+311
-287
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "neovim-lib"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
authors = ["daa84 <[email protected]>"]
55
license = "LGPL-3.0"
66
description = "msgpack-rpc neovim client"
77
documentation = "http://daa84.github.io/neovim-lib/neovim_lib/index.html"
88
repository = "https://github.com/daa84/neovim-lib"
99
readme = "README.md"
10-
categories = "api-bindings"
10+
categories = ["api-bindings"]
1111
keywords = ["neovim"]
1212
exclude = ["generate.bat", "Makefile"]
1313

bindings/neovim_api.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Auto generated {{date}}
22

33
use neovim::*;
4-
use rmp::Value;
54
use rpc::*;
65

76
{% for typename in exttypes %}

rustfmt.toml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
use_try_shorthand = true

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//! # Examples
55
//! ```no_run
66
//! use neovim_lib::{Neovim, NeovimApi, Session};
7-
//!
7+
//!
88
//! let mut session = Session::new_tcp("127.0.0.1:6666").unwrap();
99
//! session.start_event_loop();
1010
//! let mut nvim = Neovim::new(session);

0 commit comments

Comments
 (0)