Skip to content

Commit

Permalink
prepare for publish
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Mar 25, 2024
1 parent 0289f8f commit 6fa8786
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "rxqlite"
version = "0.1.5"
version = "0.1.6"
readme = "README.md"

edition = "2021"
authors = [
"ha421 <hha835773@gmail.com>",
]
categories = ["distributed", "database", "raft" , "sqlite" ]
description = "A distributed sqlite database built upon `openraft`, `sqlx` and `sqlite`."
description = "A secured distributed sqlite database built upon `openraft`, `sqlx` and `sqlite`."
homepage = "https://github.com/HaHa421/rxqlite"
keywords = ["distributed", "sqlite"]
license = "MIT OR Apache-2.0"
Expand Down
9 changes: 7 additions & 2 deletions crates/rxqlite-sqlx-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rxqlite-sqlx-common"
version = "0.1.1"
version = "0.1.2"

edition = "2021"
authors = [
Expand All @@ -20,7 +20,12 @@ sqlparser= "0.44"

[dependencies.sqlx]
version = "0.7"
features = ["runtime-tokio-rustls" , "chrono"]
features = ["runtime-tokio-rustls" , "chrono" ]

[dependencies.sqlx-sqlite-cipher]
version = "0.7"
#path = "../../../sqlx-sqlite-cipher"


[dependencies.sqlx-core]
version = "0.7"
Expand Down
2 changes: 1 addition & 1 deletion crates/rxqlite-sqlx-common/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#![deny(warnings)]

#[cfg(feature = "sqlite")]
use sqlx::Sqlite;
use sqlx_sqlite_cipher::Sqlite;
#[cfg(feature = "sqlite")]
pub type SqlxDb = Sqlite;

Expand Down
2 changes: 1 addition & 1 deletion crates/rxqlite-tests-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rxqlite-tests-common"
version = "0.1.1"
version = "0.1.2"


edition = "2021"
Expand Down
2 changes: 2 additions & 0 deletions crates/rxqlite-tests-common/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ pub struct TestClusterManager {
pub working_directory: std::path::PathBuf,
pub executable: String,
pub keep_temp_directories: bool,
pub key_path: String, // empty if not used
}

impl TestClusterManager {
Expand Down Expand Up @@ -157,6 +158,7 @@ impl TestClusterManager {
working_directory:working_directory.as_ref().to_path_buf(),
executable,
keep_temp_directories: false,
key_path,
})
}
pub fn kill_all(&mut self)-> anyhow::Result<()> {
Expand Down

0 comments on commit 6fa8786

Please sign in to comment.