Skip to content

Commit e01ae71

Browse files
authored
Rename opendata-common to common (#35)
We dropped opendata prefix from other modules, so just updating common as well.
1 parent 7f7c909 commit e01ae71

37 files changed

Lines changed: 61 additions & 61 deletions

AGENTS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
## Project Overview
44

5-
OpenData is a collection of deployable database systems that share common infrastructure. Each database is its own crate but leverages shared logic from `opendata-common`.
5+
OpenData is a collection of deployable database systems that share common infrastructure. Each database is its own crate but leverages shared logic from `common`.
66

77
### Crates
88

9-
- **opendata-common**: Shared library containing common utilities and abstractions used by all database implementations
9+
- **common**: Shared library containing common utilities and abstractions used by all database implementations
1010
- **timeseries**: A timeseries database optimized for time-ordered data
1111
- **log**: A Kafka-like log abstraction for append-only event streams
1212

Cargo.lock

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[workspace]
22
resolver = "2"
33
members = [
4-
"opendata-common",
4+
"common",
55
"timeseries",
66
"log",
77
]
@@ -20,7 +20,7 @@ config = "0.14"
2020
dashmap = "6.1.0"
2121
fail = "0.5"
2222
moka = { version = "0.12", features = ["future"] }
23-
opendata-common = { path = "./opendata-common" }
23+
common = { path = "./common" }
2424
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] }
2525
rstest = "0.19"
2626
serde = { version = "1.0", features = ["derive"] }
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "opendata-common"
2+
name = "common"
33
version.workspace = true
44
edition.workspace = true
55

File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ use super::{MergeOperator, Storage, StorageError, StorageResult};
2929
/// # Examples
3030
///
3131
/// ```rust,ignore
32-
/// use opendata_common::storage::config::StorageConfig;
33-
/// use opendata_common::storage::factory::create_storage;
32+
/// use common::storage::config::StorageConfig;
33+
/// use common::storage::factory::create_storage;
3434
///
3535
/// // Create in-memory storage (default)
3636
/// let storage = create_storage(&StorageConfig::default(), None).await?;

0 commit comments

Comments
 (0)