Skip to content
This repository was archived by the owner on Jul 13, 2023. It is now read-only.

Commit b3a5ed5

Browse files
committed
Bump to 0.1.5
1 parent 6b8b758 commit b3a5ed5

4 files changed

Lines changed: 10 additions & 139 deletions

File tree

Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nvim-utils"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
edition = "2021"
55
description = "Utilities for writing neovim plugins in rust"
66
authors = ["Will Hopkins <willothyh@gmail.com>"]
@@ -25,6 +25,9 @@ unstable = []
2525
all-features = true
2626
rustdoc-args = ["--cfg", "docsrs"]
2727

28+
[workspace]
29+
members = ["macros"]
30+
2831
[dependencies]
2932
mlua = { version = "0.8.7", features = [
3033
"luajit",
@@ -33,7 +36,7 @@ mlua = { version = "0.8.7", features = [
3336
"serialize",
3437
] }
3538
serde = { version = "1.0.152", features = ["derive"] }
36-
nvim-utils-macros = { path = "macros" }
39+
nvim-utils-macros = { version = "0.1.0", path = "macros" }
3740

3841
[dev-dependencies]
3942
fs_extra = "1.3.0"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Using `nvim-utils` is as simple as adding it to your `Cargo.toml`:
99

1010
```toml
1111
[dependencies]
12-
nvim-utils = "0.1.4"
12+
nvim-utils = "0.1.5"
1313
```
1414

1515
or

macros/Cargo.lock

Lines changed: 0 additions & 136 deletions
This file was deleted.

macros/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
name = "nvim-utils-macros"
33
version = "0.1.0"
44
edition = "2021"
5+
authors = ["Will Hopkins <willothyh@gmail.com>"]
6+
description = "Macros for nvim-utils"
7+
license = "MIT"
8+
repository = "https://github.com/willothy/nvim-utils"
59

610
[lib]
711
proc-macro = true

0 commit comments

Comments
 (0)