[rust]: rename some crates

This commit is contained in:
appflowy 2021-11-19 12:33:14 +08:00
parent 7c60626049
commit 91c9f2c62f
57 changed files with 21 additions and 21 deletions

View File

@ -64,7 +64,7 @@ flowy-user-infra = { path = "../rust-lib/flowy-user-infra" }
flowy-workspace-infra = { path = "../rust-lib/flowy-workspace-infra" }
flowy-document-infra = { path = "../rust-lib/flowy-document-infra" }
flowy-ws = { path = "../rust-lib/flowy-ws" }
flowy-ot = { path = "../rust-lib/flowy-ot" }
flowy-ot = { path = "../rust-lib/lib-ot" }
flowy-net = { path = "../rust-lib/flowy-net", features = ["http_server"] }
ormx = { version = "0.7", features = ["postgres"]}
@ -106,7 +106,7 @@ flowy-document = { path = "../rust-lib/flowy-document", features = ["flowy_test"
flowy-ws = { path = "../rust-lib/flowy-ws" }
flowy-test = { path = "../rust-lib/flowy-test" }
flowy-infra = { path = "../rust-lib/flowy-infra" }
flowy-ot = { path = "../rust-lib/flowy-ot" }
flowy-sqlite = { path = "../rust-lib/flowy-sqlite" }
flowy-infra = { path = "../rust-lib/lib-infra" }
flowy-ot = { path = "../rust-lib/lib-ot" }
flowy-sqlite = { path = "../rust-lib/lib-sqlite" }
futures-util = "0.3.15"

View File

@ -9,15 +9,15 @@ members = [
"flowy-ast",
"flowy-derive",
"flowy-test",
"flowy-sqlite",
"lib-sqlite",
"flowy-database",
"flowy-infra",
"lib-infra",
"flowy-workspace",
"flowy-workspace-infra",
"flowy-dart-notify",
"flowy-document",
"flowy-document-infra",
"flowy-ot",
"lib-ot",
"flowy-net",
"flowy-ws",
"flowy-backend-api",

View File

@ -9,4 +9,4 @@ edition = "2018"
diesel = {version = "1.4.8", features = ["sqlite"]}
diesel_derives = {version = "1.4.1", features = ["sqlite"]}
diesel_migrations = {version = "1.4.0", features = ["sqlite"]}
flowy-sqlite = {path = "../flowy-sqlite" }
flowy-sqlite = {path = "../lib-sqlite" }

View File

@ -6,7 +6,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
flowy-ot = { path = "../flowy-ot" }
flowy-ot = { path = "../lib-ot" }
flowy-derive = { path = "../flowy-derive" }
protobuf = {version = "2.18.0"}
bytes = "1.0"

View File

@ -12,9 +12,9 @@ derive_more = {version = "0.99", features = ["display"]}
flowy-dispatch = { path = "../flowy-dispatch" }
flowy-derive = { path = "../flowy-derive" }
flowy-database = { path = "../flowy-database" }
flowy-infra = { path = "../flowy-infra" }
flowy-infra = { path = "../lib-infra" }
flowy-dart-notify = { path = "../flowy-dart-notify" }
flowy-ot = { path = "../flowy-ot" }
flowy-ot = { path = "../lib-ot" }
flowy-ws = { path = "../flowy-ws" }
flowy-net = { path = "../flowy-net", features = ["flowy_request"] }

View File

@ -22,7 +22,7 @@ tokio = { version = "1", features = ["full"] }
actix-web = {version = "4.0.0-beta.8", optional = true}
derive_more = {version = "0.99", features = ["display"]}
flowy-derive = { path = "../flowy-derive" }
flowy-infra = { path = "../flowy-infra"}
flowy-infra = { path = "../lib-infra" }
anyhow = "1.0"
thiserror = "1.0.24"
uuid = { version = "0.8", features = ["v4"] }

View File

@ -9,7 +9,7 @@ edition = "2018"
flowy-dispatch = { path = "../flowy-dispatch"}
flowy-log = { path = "../flowy-log" }
flowy-user = { path = "../flowy-user" }
flowy-infra = { path = "../flowy-infra" }
flowy-infra = { path = "../lib-infra" }
flowy-workspace = { path = "../flowy-workspace", default-features = false }
flowy-database = { path = "../flowy-database" }
flowy-document = { path = "../flowy-document" }

View File

@ -10,7 +10,7 @@ flowy-sdk = { path = "../flowy-sdk"}
flowy-dispatch = { path = "../flowy-dispatch"}
flowy-user = { path = "../flowy-user"}
flowy-workspace = { path = "../flowy-workspace", default-features = false}
flowy-infra = { path = "../flowy-infra"}
flowy-infra = { path = "../lib-infra" }
flowy-document = { path = "../flowy-document"}
flowy-document-infra = { path = "../flowy-document-infra"}
flowy-net = { path = "../flowy-net"}

View File

@ -12,8 +12,8 @@ derive_more = {version = "0.99", features = ["display"]}
flowy-dispatch = { path = "../flowy-dispatch" }
flowy-derive = { path = "../flowy-derive" }
flowy-database = { path = "../flowy-database" }
flowy-sqlite = { path = "../flowy-sqlite" }
flowy-infra = { path = "../flowy-infra" }
flowy-sqlite = { path = "../lib-sqlite" }
flowy-infra = { path = "../lib-infra" }
flowy-net = { path = "../flowy-net", features = ["flowy_request"] }
flowy-ws = { path = "../flowy-ws"}
flowy-dart-notify = { path = "../flowy-dart-notify" }

View File

@ -12,10 +12,10 @@ flowy-document = { path = "../flowy-document" }
flowy-dispatch = { path = "../flowy-dispatch" }
flowy-derive = { path = "../flowy-derive" }
flowy-database = { path = "../flowy-database" }
flowy-sqlite = { path = "../flowy-sqlite" }
flowy-infra = { path = "../flowy-infra" }
flowy-sqlite = { path = "../lib-sqlite" }
flowy-infra = { path = "../lib-infra" }
flowy-dart-notify = { path = "../flowy-dart-notify" }
flowy-ot = { path = "../flowy-ot" }
flowy-ot = { path = "../lib-ot" }
flowy-net = { path = "../flowy-net", features = ["flowy_request"] }
flowy-backend-api = { path = "../flowy-backend-api"}

View File

@ -8,7 +8,7 @@ edition = "2018"
[dependencies]
flowy-derive = { path = "../flowy-derive" }
flowy-net = { path = "../flowy-net" }
flowy-infra = { path = "../flowy-infra" }
flowy-infra = { path = "../lib-infra" }
tokio-tungstenite = "0.15"
futures-util = "0.3.17"

View File

@ -11,7 +11,7 @@ diesel = {version = "1.4.8", features = ["sqlite"]}
diesel_derives = {version = "1.4.1", features = ["sqlite"]}
diesel_migrations = {version = "1.4.0", features = ["sqlite"]}
flowy-derive = { path = "../flowy-derive"}
flowy-sqlite = { path = "../flowy-sqlite"}
flowy-sqlite = { path = "../lib-sqlite" }
lazy_static = "1.4.0"
protobuf = {version = "2.18.0"}
log = "0.4.14"