Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions crates/client/client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ extern crate core;

pub extern crate databend_meta_kvapi as kvapi;
pub extern crate databend_meta_kvapi_test_suite as kvapi_test_suite;
pub extern crate databend_meta_runtime_api as runtime_api;
pub extern crate databend_meta_types as types;
pub extern crate databend_meta_version as version;

mod channel_manager;
mod client_conf;
Expand Down
5 changes: 4 additions & 1 deletion crates/server/service/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@
)]

pub extern crate databend_meta_raft_store as raft_store;
pub extern crate databend_meta_runtime_api as runtime_api;
pub extern crate databend_meta_sled_store as sled_store;
pub extern crate databend_meta_types as types;
pub extern crate databend_meta_version as version;

pub mod analysis;
pub mod api;
Expand All @@ -36,8 +39,8 @@ pub mod meta_service;
pub mod metrics;
pub mod network;
pub mod raft_client;
pub mod raft_version;
pub(crate) mod request_handling;
pub mod store;
pub mod version;

pub mod util;
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.

pub use databend_meta_version::MIN_CLIENT_VERSION;
use feature_set::FeatureSet;
use semver::Version;

Expand Down