-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from Horusiath/update-yrs-v0.19
updated yrs dependencies to v0.19
- Loading branch information
Showing
8 changed files
with
76 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "yrs-kvstore" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
description = "Generic persistence layer over Yrs documents" | ||
license = "MIT" | ||
authors = ["Bartosz Sypytkowski <[email protected]>"] | ||
|
@@ -13,7 +13,7 @@ readme = "./README.md" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
yrs = "0.17" | ||
yrs = "0.19" | ||
thiserror = "1.0" | ||
smallvec = { version = "1.10", features=["write","union","const_generics","const_new"] } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "yrs-lmdb" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
description = "Persistence layer over Yrs documents for LMDB backend" | ||
license = "MIT" | ||
authors = ["Bartosz Sypytkowski <[email protected]>"] | ||
|
@@ -13,13 +13,13 @@ readme = "./README.md" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
yrs-kvstore = {version = "0.2", path = "../yrs-kvstore"} | ||
yrs-kvstore = { version = "0.3", path = "../yrs-kvstore" } | ||
lmdb-rs = { version = "0.7" } | ||
|
||
[dev-dependencies] | ||
yrs = "0.17" | ||
yrs = "0.19" | ||
criterion = "0.5" | ||
rand = "0.7" | ||
tempdir = "0.3" | ||
|
||
[[bench]] | ||
name = "benches" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "yrs-rocksdb" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
description = "Persistence layer over Yrs documents for RocksDB backend" | ||
license = "MIT" | ||
authors = ["Bartosz Sypytkowski <[email protected]>"] | ||
|
@@ -13,13 +13,13 @@ readme = "./README.md" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
yrs-kvstore = {version = "0.2", path = "../yrs-kvstore"} | ||
rocksdb = { version = "0.21" } | ||
yrs-kvstore = { version = "0.3", path = "../yrs-kvstore" } | ||
rocksdb = { version = "0.22" } | ||
|
||
[dev-dependencies] | ||
yrs = "0.17" | ||
yrs = "0.19" | ||
criterion = "0.5" | ||
rand = "0.7" | ||
tempdir = "0.3" | ||
|
||
[[bench]] | ||
name = "benches" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.