Add/correct msrv labels

This commit is contained in:
Luke Parker
2024-12-08 18:27:01 -05:00
parent 834c16930b
commit 8013c56195
74 changed files with 326 additions and 51 deletions

View File

@@ -8,6 +8,7 @@ authors = ["Luke Parker <lukeparker5132@gmail.com>"]
keywords = []
edition = "2021"
publish = false
rust-version = "1.80"
[package.metadata.docs.rs]
all-features = true

View File

@@ -36,7 +36,7 @@ db_channel! {
/// The type used for the database.
#[cfg(all(feature = "parity-db", not(feature = "rocksdb")))]
pub type Db = serai_db::ParityDb;
pub type Db = std::sync::Arc<serai_db::ParityDb>;
/// The type used for the database.
#[cfg(feature = "rocksdb")]
pub type Db = serai_db::RocksDB;