diff --git a/frontend/rust-lib/Cargo.lock b/frontend/rust-lib/Cargo.lock index 5f6b74990d..e7bf278535 100755 --- a/frontend/rust-lib/Cargo.lock +++ b/frontend/rust-lib/Cargo.lock @@ -830,7 +830,7 @@ dependencies = [ "flowy-collaboration", "flowy-database", "flowy-derive", - "http-response", + "http-flowy", "lib-dispatch", "lib-ot", "lib-sqlite", @@ -918,7 +918,7 @@ dependencies = [ "flowy-user", "flowy-user-data-model", "futures-util", - "http-response", + "http-flowy", "hyper", "lazy_static", "lib-dispatch", @@ -1317,9 +1317,9 @@ dependencies = [ ] [[package]] -name = "http-response" +name = "http-flowy" version = "0.1.0" -source = "git+https://github.com/AppFlowy-IO/AppFlowy-Server#0f3b0623506b3bc5855473eeb823e21ead2316a8" +source = "git+https://github.com/AppFlowy-IO/AppFlowy-Server#3012acce300024dda8819d8507c9105af84cd909" dependencies = [ "anyhow", "bytes", diff --git a/frontend/rust-lib/flowy-error/Cargo.toml b/frontend/rust-lib/flowy-error/Cargo.toml index 30f8d2c691..6deceba9d7 100644 --- a/frontend/rust-lib/flowy-error/Cargo.toml +++ b/frontend/rust-lib/flowy-error/Cargo.toml @@ -16,7 +16,7 @@ bytes = "1.0" flowy-collaboration = { path = "../../../shared-lib/flowy-collaboration", optional = true} lib-ot = { path = "../../../shared-lib/lib-ot", optional = true} serde_json = {version = "1.0", optional = true} -http-response = { git = "https://github.com/AppFlowy-IO/AppFlowy-Server", optional = true} +http-flowy = { git = "https://github.com/AppFlowy-IO/AppFlowy-Server", optional = true} flowy-database = { path = "../flowy-database", optional = true} r2d2 = { version = "0.8", optional = true} lib-sqlite = { path = "../lib-sqlite", optional = true } @@ -25,5 +25,5 @@ lib-sqlite = { path = "../lib-sqlite", optional = true } collaboration = ["flowy-collaboration"] ot = ["lib-ot"] serde = ["serde_json"] -http_server = ["http-response"] +http_server = ["http-flowy"] db = ["flowy-database", "lib-sqlite", "r2d2"] diff --git a/frontend/rust-lib/flowy-error/src/ext/http_server.rs b/frontend/rust-lib/flowy-error/src/ext/http_server.rs index 960dd59146..4515eddf1f 100644 --- a/frontend/rust-lib/flowy-error/src/ext/http_server.rs +++ b/frontend/rust-lib/flowy-error/src/ext/http_server.rs @@ -1,6 +1,6 @@ use crate::FlowyError; use error_code::ErrorCode; -use http_response::errors::{ErrorCode as ServerErrorCode, ServerError}; +use http_flowy::errors::{ErrorCode as ServerErrorCode, ServerError}; impl std::convert::From for FlowyError { fn from(error: ServerError) -> Self { diff --git a/frontend/rust-lib/flowy-net/Cargo.toml b/frontend/rust-lib/flowy-net/Cargo.toml index a71db47beb..67e215c86d 100644 --- a/frontend/rust-lib/flowy-net/Cargo.toml +++ b/frontend/rust-lib/flowy-net/Cargo.toml @@ -29,7 +29,7 @@ tracing = { version = "0.1", features = ["log"] } dashmap = {version = "4.0"} async-stream = "0.3.2" futures-util = "0.3.15" -http-response = { git = "https://github.com/AppFlowy-IO/AppFlowy-Server", features = ["with_reqwest"]} +http-flowy = { git = "https://github.com/AppFlowy-IO/AppFlowy-Server", features = ["with_reqwest"] } serde-aux = "1.0.1" reqwest = "0.11" hyper = "0.14" diff --git a/frontend/rust-lib/flowy-net/src/http_server/document.rs b/frontend/rust-lib/flowy-net/src/http_server/document.rs index 5ab9c31440..e4d8722ca8 100644 --- a/frontend/rust-lib/flowy-net/src/http_server/document.rs +++ b/frontend/rust-lib/flowy-net/src/http_server/document.rs @@ -5,7 +5,7 @@ use crate::{ use flowy_collaboration::entities::document_info::{CreateDocParams, DocumentId, DocumentInfo, ResetDocumentParams}; use flowy_document::DocumentCloudService; use flowy_error::FlowyError; -use http_response::response::FlowyResponse; +use http_flowy::response::FlowyResponse; use lazy_static::lazy_static; use lib_infra::future::FutureResult; use std::sync::Arc; diff --git a/frontend/rust-lib/flowy-net/src/http_server/folder.rs b/frontend/rust-lib/flowy-net/src/http_server/folder.rs index 535c180bc8..e70d690bb7 100644 --- a/frontend/rust-lib/flowy-net/src/http_server/folder.rs +++ b/frontend/rust-lib/flowy-net/src/http_server/folder.rs @@ -11,8 +11,8 @@ use flowy_folder_data_model::entities::{ }; use flowy_folder::event_map::FolderCouldServiceV1; -use http_response::errors::ServerError; -use http_response::response::FlowyResponse; +use http_flowy::errors::ServerError; +use http_flowy::response::FlowyResponse; use lazy_static::lazy_static; use lib_infra::future::FutureResult; use std::sync::Arc; diff --git a/frontend/rust-lib/flowy-net/src/http_server/user.rs b/frontend/rust-lib/flowy-net/src/http_server/user.rs index fd077c776e..7a09ca5b95 100644 --- a/frontend/rust-lib/flowy-net/src/http_server/user.rs +++ b/frontend/rust-lib/flowy-net/src/http_server/user.rs @@ -4,7 +4,7 @@ use flowy_user::event_map::UserCloudService; use flowy_user_data_model::entities::{ SignInParams, SignInResponse, SignUpParams, SignUpResponse, UpdateUserParams, UserProfile, }; -use http_response::errors::ServerError; +use http_flowy::errors::ServerError; use lib_infra::future::FutureResult; pub struct UserHttpCloudService { diff --git a/frontend/rust-lib/flowy-net/src/request.rs b/frontend/rust-lib/flowy-net/src/request.rs index 710e79adad..f65c19687f 100644 --- a/frontend/rust-lib/flowy-net/src/request.rs +++ b/frontend/rust-lib/flowy-net/src/request.rs @@ -1,7 +1,7 @@ use crate::configuration::HEADER_TOKEN; use bytes::Bytes; -use http_response::errors::ServerError; -use http_response::response::FlowyResponse; +use http_flowy::errors::ServerError; +use http_flowy::response::FlowyResponse; use hyper::http; use protobuf::ProtobufError; use reqwest::{header::HeaderMap, Client, Method, Response}; diff --git a/frontend/scripts/makefile/desktop.toml b/frontend/scripts/makefile/desktop.toml index 98d4227857..cab4dcba60 100644 --- a/frontend/scripts/makefile/desktop.toml +++ b/frontend/scripts/makefile/desktop.toml @@ -34,6 +34,7 @@ private = true script = [ """ cd rust-lib/ + rustup show echo cargo build --package=dart-ffi --target ${RUST_COMPILE_TARGET} --features "${FEATURES}" cargo build --package=dart-ffi --target ${RUST_COMPILE_TARGET} --features "${FEATURES}" cd ../