Feat/appflowy tauri 3 (#1914)

This commit is contained in:
Nathan.fooo
2023-03-03 20:38:31 +08:00
committed by GitHub
parent 59a1910b3c
commit 0f3c6d6a04
100 changed files with 2578 additions and 1134 deletions

View File

@ -8,13 +8,13 @@ edition = "2018"
[dependencies]
pin-project = "1.0"
futures-core = { version = "0.3", default-features = false }
futures-channel = "0.3.15"
futures = "0.3.15"
futures-util = "0.3.15"
bytes = {version = "1.0", features = ["serde"]}
tokio = { version = "1", features = ["full"] }
futures-channel = "0.3.26"
futures = "0.3.26"
futures-util = "0.3.26"
bytes = {version = "1.4", features = ["serde"]}
tokio = { version = "1.26", features = ["full"] }
nanoid = "0.4.0"
log = "0.4.14"
log = "0.4.17"
thread-id = "3.3.0"
dyn-clone = "1.0"
derivative = "2.2.0"
@ -24,12 +24,12 @@ serde_repr = { version = "0.1", optional = true }
#optional crate
bincode = { version = "1.3", optional = true}
protobuf = {version = "2.24.1", optional = true}
protobuf = {version = "2.28.0", optional = true}
tracing = { version = "0.1"}
[dev-dependencies]
tokio = { version = "1", features = ["full"] }
futures-util = "0.3.15"
tokio = { version = "1.26", features = ["full"] }
futures-util = "0.3.26"
[features]
default = ["use_protobuf"]