Skip to content

Commit 750feaa

Browse files
committed
fix: crate name issue
1 parent b6a9f7f commit 750feaa

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ prost = "0.12"
3232
tower-http = { version = "0.3", features = ["cors"] }
3333

3434
# Local crate references
35-
shorterdb = { path = "crates/shorterdb", version = "0.2.0" }
35+
shorterDB = { path = "crates/shorterdb", version = "0.2.0" }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Add this to your `Cargo.toml`:
4747

4848
```toml
4949
[dependencies]
50-
shorterdb = "0.2.0"
50+
shorterDB = "0.2.0"
5151
```
5252

5353
## Workspace Structure

crates/examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
publish = false
66

77
[dependencies]
8-
shorterdb.workspace = true
8+
shorterDB.workspace = true
99
anyhow.workspace = true
1010
clap.workspace = true
1111

crates/shorterdb-grpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ path = "src/main.rs"
1313

1414
[dependencies]
1515
# Core engine
16-
shorterdb.workspace = true
16+
shorterDB.workspace = true
1717

1818
# Networking
1919
tokio.workspace = true

crates/shorterdb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "shorterdb"
2+
name = "shorterDB"
33
description = "A lightweight embedded key-value store built with SkipLists and LSM architecture"
44
version.workspace = true
55
authors.workspace = true

crates/shorterdb/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Add this to your `Cargo.toml`:
2020

2121
```toml
2222
[dependencies]
23-
shorterdb = "0.2.0"
23+
shorterDB = "0.2.0"
2424
```
2525

2626
## Quick Start

0 commit comments

Comments
 (0)