-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update crate documentation, more consistent formatting
Signed-off-by: Victor Porof <[email protected]>
- Loading branch information
1 parent
d33e79f
commit 9fe69b1
Showing
38 changed files
with
658 additions
and
590 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,4 +1,9 @@ | ||
comment_width = 90 | ||
force_multiline_blocks = true | ||
imports_layout = "Vertical" | ||
max_width = 120 | ||
match_block_trailing_comma = true | ||
max_width = 120 | ||
merge_imports = true | ||
reorder_impl_items = true | ||
use_small_heuristics = "Off" | ||
wrap_comments = true |
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,23 +1,28 @@ | ||
[package] | ||
name = "rkv" | ||
version = "0.11.1" | ||
authors = ["Richard Newman <[email protected]>", "Nan Jiang <[email protected]>", "Myk Melez <[email protected]>", "Victor Porof <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
description = "a simple, humane, typed Rust interface to LMDB" | ||
authors = [ | ||
"Richard Newman <[email protected]>", | ||
"Nan Jiang <[email protected]>", | ||
"Myk Melez <[email protected]>", | ||
"Victor Porof <[email protected]>", | ||
] | ||
categories = ["database"] | ||
description = "A simple, humane, typed key-value storage solution" | ||
documentation = "https://docs.rs/rkv" | ||
edition = "2018" | ||
exclude = ["/tests/envs/*"] | ||
homepage = "https://github.com/mozilla/rkv" | ||
repository = "https://github.com/mozilla/rkv" | ||
readme = "README.md" | ||
keywords = ["lmdb", "database", "storage"] | ||
categories = ["database"] | ||
exclude = ["/tests/envs/*"] | ||
license = "Apache-2.0" | ||
name = "rkv" | ||
readme = "README.md" | ||
repository = "https://github.com/mozilla/rkv" | ||
version = "0.11.1" | ||
|
||
[features] | ||
default = ["db-dup-sort", "db-int-key"] | ||
backtrace = ["failure/backtrace", "failure/std"] | ||
db-dup-sort = [] | ||
db-int-key = [] | ||
default = ["db-dup-sort", "db-int-key"] | ||
with-asan = ["lmdb-rkv/with-asan"] | ||
with-fuzzer = ["lmdb-rkv/with-fuzzer"] | ||
with-fuzzer-no-link = ["lmdb-rkv/with-fuzzer-no-link"] | ||
|
@@ -32,17 +37,17 @@ lazy_static = "1.0" | |
lmdb-rkv = "0.14" | ||
log = "0.4" | ||
ordered-float = "1.0" | ||
serde = { version = "1.0", features = ["derive", "rc"] } | ||
serde = {version = "1.0", features = ["derive", "rc"]} | ||
serde_derive = "1.0" | ||
url = "2.0" | ||
uuid = "0.8" | ||
|
||
# Get rid of failure's dependency on backtrace. Eventually | ||
# backtrace will move into Rust core, but we don't need it here. | ||
[dependencies.failure] | ||
version = "0.1" | ||
default_features = false | ||
features = ["derive"] | ||
version = "0.1" | ||
|
||
[dev-dependencies] | ||
byteorder = "1" | ||
|
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
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
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
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
Oops, something went wrong.