Rename garage_core to garage_model

This commit is contained in:
Alex Auvolat
2020-07-07 13:59:22 +02:00
parent f0918b377e
commit bec26a1312
23 changed files with 32 additions and 32 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ path = "lib.rs"
[dependencies]
garage_util = { path = "../util" }
garage_table = { path = "../table" }
garage_core = { path = "../core" }
garage_model = { path = "../model" }
bytes = "0.4"
hex = "0.3"
+1 -1
View File
@@ -9,7 +9,7 @@ use hyper::{Body, Method, Request, Response, Server};
use garage_util::error::Error;
use garage_core::garage::Garage;
use garage_model::garage::Garage;
use crate::http_util::*;
use crate::signature::check_signature;
+4 -4
View File
@@ -8,10 +8,10 @@ use garage_table::*;
use garage_util::data::*;
use garage_util::error::Error;
use garage_core::block_ref_table::*;
use garage_core::garage::Garage;
use garage_core::object_table::*;
use garage_core::version_table::*;
use garage_model::block_ref_table::*;
use garage_model::garage::Garage;
use garage_model::object_table::*;
use garage_model::version_table::*;
use crate::http_util::*;
+2 -2
View File
@@ -6,8 +6,8 @@ use hyper::{Body, Request, Response};
use garage_util::data::*;
use garage_util::error::Error;
use garage_core::garage::Garage;
use garage_core::object_table::*;
use garage_model::garage::Garage;
use garage_model::object_table::*;
use crate::encoding::*;
use crate::http_util::*;
+2 -2
View File
@@ -9,8 +9,8 @@ use garage_util::error::Error;
use garage_table::EmptyKey;
use garage_core::garage::Garage;
use garage_core::object_table::*;
use garage_model::garage::Garage;
use garage_model::object_table::*;
use crate::http_util::*;
+1 -1
View File
@@ -7,7 +7,7 @@ use hyper::Response;
use garage_util::error::Error;
use garage_core::garage::Garage;
use garage_model::garage::Garage;
use crate::encoding::*;
use crate::http_util::*;
+5 -5
View File
@@ -9,11 +9,11 @@ use garage_table::*;
use garage_util::data::*;
use garage_util::error::Error;
use garage_core::block::INLINE_THRESHOLD;
use garage_core::block_ref_table::*;
use garage_core::garage::Garage;
use garage_core::object_table::*;
use garage_core::version_table::*;
use garage_model::block::INLINE_THRESHOLD;
use garage_model::block_ref_table::*;
use garage_model::garage::Garage;
use garage_model::object_table::*;
use garage_model::version_table::*;
use crate::encoding::*;
use crate::http_util::*;
+2 -2
View File
@@ -8,8 +8,8 @@ use sha2::{Digest, Sha256};
use garage_table::*;
use garage_util::error::Error;
use garage_core::garage::Garage;
use garage_core::key_table::*;
use garage_model::garage::Garage;
use garage_model::key_table::*;
use crate::encoding::uri_encode;