Skip to content

Commit

Permalink
tuning embed docs
Browse files Browse the repository at this point in the history
  • Loading branch information
wlqm committed Apr 27, 2024
1 parent 86630d7 commit d5475be
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 14 deletions.
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vsdb_core"
version = "0.62.1"
version = "0.62.2"
authors = ["[email protected]"]
edition = "2021"
description = "A stuctured DB with some 'Git-like' features, mainly used in blockchain projects."
Expand Down
6 changes: 1 addition & 5 deletions core/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
//!
//! # vsdb_core
//!
//! The core implementations of [VSDB](https://crates.io/crates/vsdb).
//!
#![doc = include_str!("../README.md")]

#![deny(warnings)]
#![cfg_attr(test, allow(warnings))]
Expand Down
2 changes: 1 addition & 1 deletion utils/slot_db/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vsdb_slot_db"
version = "0.9.0"
version = "0.9.1"
edition = "2021"
keywords = ["index", "cache", "timestamp", "slot", "database"]
license = "MIT"
Expand Down
2 changes: 2 additions & 0 deletions utils/slot_db/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![doc = include_str!("../README.md")]

#![deny(warnings)]
#![cfg_attr(test, warn(warnings))]

Expand Down
2 changes: 1 addition & 1 deletion wrappers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vsdb"
version = "0.62.0"
version = "0.62.1"
authors = ["[email protected]"]
edition = "2021"
description = "A stuctured DB with some 'Git-like' features, mainly used in blockchain projects."
Expand Down
7 changes: 1 addition & 6 deletions wrappers/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
//!
//! VSDB is a 'Git' in the form of KV-database.
//!
//! Based on the powerful version control function of VSDB,
//! you can easily give your data structure the ability to version management.
//!
#![doc = include_str!("../README.md")]

#![deny(warnings)]
#![cfg_attr(test, allow(warnings))]
Expand Down

0 comments on commit d5475be

Please sign in to comment.