diff --git a/README.md b/README.md index 0265417cc..7727d76ab 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ The project is split up into several crates in the `crates/` directory: * Libraries: * [**cdk**](./crates/cdk/): Rust implementation of Cashu protocol. - * [**cdk-sqlite**](./crates/cdk-sqlite/): Sqlite Storage backend. + * [**cdk-sqlite**](./crates/cdk-sqlite/): SQLite Storage backend. * [**cdk-redb**](./crates/cdk-redb/): Redb Storage backend. * [**cdk-rexie**](./crates/cdk-rexie/): Rexie Storage backend for browsers * [**cdk-axum**](./crates/cdk-axum/): Axum webserver for mint. diff --git a/crates/cdk-rexie/README.md b/crates/cdk-rexie/README.md index a0c201862..9203ce142 100644 --- a/crates/cdk-rexie/README.md +++ b/crates/cdk-rexie/README.md @@ -1,5 +1,5 @@ -# Cashu Development Kit Redb Storage Backend +# Cashu Development Kit Rexie Storage Backend **ALPHA** This library is in early development, the api will change and should be used with caution. diff --git a/crates/cdk-sqlite/Cargo.toml b/crates/cdk-sqlite/Cargo.toml index 2fd948266..ef2b20f21 100644 --- a/crates/cdk-sqlite/Cargo.toml +++ b/crates/cdk-sqlite/Cargo.toml @@ -3,7 +3,7 @@ name = "cdk-sqlite" version = { workspace = true } edition = "2021" authors = ["CDK Developers"] -description = "Sqlite storage backend for CDK" +description = "SQLite storage backend for CDK" license.workspace = true homepage.workspace = true repository.workspace = true diff --git a/crates/cdk-sqlite/README.md b/crates/cdk-sqlite/README.md index c30dc88de..22d41c291 100644 --- a/crates/cdk-sqlite/README.md +++ b/crates/cdk-sqlite/README.md @@ -1,5 +1,5 @@ -# Cashu Development Kit Redb Storage Backend +# Cashu Development Kit SQLite Storage Backend **ALPHA** This library is in early development, the api will change and should be used with caution.