Skip to content

Commit

Permalink
chore: update document
Browse files Browse the repository at this point in the history
  • Loading branch information
al8n committed Apr 27, 2024
1 parent 7688e0d commit 716be2c
Show file tree
Hide file tree
Showing 8 changed files with 136 additions and 80 deletions.
182 changes: 119 additions & 63 deletions README-zh_CN.md

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,36 +88,36 @@ This repository contains two kinds of in-memory key-value database which support

```toml
[dependencies]
skipdb = "0.1"
skipdb = "0.2"
```

- For async
- `tokio`

```toml
[dependencies]
async-skipdb = { version = "0.1", features = ["tokio"] }
async-skipdb = { version = "0.2", features = ["tokio"] }
```

- `async-std`

```toml
[dependencies]
async-skipdb = { version = "0.1", features = ["async-std"] }
async-skipdb = { version = "0.2", features = ["async-std"] }
```

- `smol`

```toml
[dependencies]
async-skipdb = { version = "0.1", features = ["smol"] }
async-skipdb = { version = "0.2", features = ["smol"] }
```

- `wasm-bindgen-futures`

```toml
[dependencies]
async-skipdb = { version = "0.1", features = ["wasm"] }
async-skipdb = { version = "0.2", features = ["wasm"] }
```

## Examples
Expand Down
2 changes: 1 addition & 1 deletion async-skipdb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "async-skipdb"
version = "0.2.0"
version = "0.2.1"
rust-version.workspace = true
edition.workspace = true
repository.workspace = true
Expand Down
8 changes: 4 additions & 4 deletions async-skipdb/README-zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,28 +62,28 @@ This crate contains two kinds of in-memory key-value database:

```toml
[dependencies]
async-skipdb = { version = "0.1", features = ["tokio"] }
async-skipdb = { version = "0.2", features = ["tokio"] }
```

- `async-std`

```toml
[dependencies]
async-skipdb = { version = "0.1", features = ["async-std"] }
async-skipdb = { version = "0.2", features = ["async-std"] }
```

- `smol`

```toml
[dependencies]
async-skipdb = { version = "0.1", features = ["smol"] }
async-skipdb = { version = "0.2", features = ["smol"] }
```

- `wasm-bindgen-futures`

```toml
[dependencies]
async-skipdb = { version = "0.1", features = ["wasm"] }
async-skipdb = { version = "0.2", features = ["wasm"] }
```

## Example
Expand Down
8 changes: 4 additions & 4 deletions async-skipdb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,28 +62,28 @@ This crate contains two kinds of in-memory key-value database:

```toml
[dependencies]
async-skipdb = { version = "0.1", features = ["tokio"] }
async-skipdb = { version = "0.2", features = ["tokio"] }
```

- `async-std`

```toml
[dependencies]
async-skipdb = { version = "0.1", features = ["async-std"] }
async-skipdb = { version = "0.2", features = ["async-std"] }
```

- `smol`

```toml
[dependencies]
async-skipdb = { version = "0.1", features = ["smol"] }
async-skipdb = { version = "0.2", features = ["smol"] }
```

- `wasm-bindgen-futures`

```toml
[dependencies]
async-skipdb = { version = "0.1", features = ["wasm"] }
async-skipdb = { version = "0.2", features = ["wasm"] }
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion skipdb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "skipdb"
version = "0.2.0"
version = "0.2.1"
rust-version.workspace = true
edition.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion skipdb/README-zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ This crate contains two kinds of in-memory key-value database:

```toml
[dependencies]
skipdb = "0.1"
skipdb = "0.2"
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion skipdb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ This crate contains two kinds of in-memory key-value database:

```toml
[dependencies]
skipdb = "0.1"
skipdb = "0.2"
```

## Example
Expand Down

0 comments on commit 716be2c

Please sign in to comment.