Skip to content
Closed
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
344 changes: 230 additions & 114 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ dotenvy = "0.15.7"
serde_json = "1.0.111"
serde_repr = "0.1.18"
serde = { version = "1.0.195", features = ["derive"] }
bytes = "1.9.0"
bytes = "1.11.1"
workspace-template = { path = "libs/workspace-template" }
uuid = { version = "1.6.1", features = ["v4", "v5"] }
anyhow = "1.0.94"
Expand All @@ -255,7 +255,7 @@ actix-web = { version = "4.5.1", default-features = false, features = [
"compress-gzip",
] }
actix-http = { version = "3.6.0", default-features = false }
tokio = { version = "1.36.0", features = ["sync"] }
tokio = { version = "1.43.1", features = ["sync"] }
tokio-stream = "0.1.14"
rayon = "1.10.0"
futures-util = "0.3.30"
Expand Down
2 changes: 1 addition & 1 deletion admin_frontend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ shared-entity = { path = "../libs/shared-entity" }

anyhow.workspace = true
axum = { version = "0.7", features = ["json"] }
tokio = { version = "1.36", features = ["rt-multi-thread", "macros"] }
tokio = { version = "1.43", features = ["rt-multi-thread", "macros"] }
askama = "0.12"
axum-extra = { version = "0.9", features = ["cookie"] }
serde.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions libs/appflowy-ai-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ ureq = { version = "2.12.1", optional = true, features = ["json"] }

[dev-dependencies]
appflowy-ai-client = { path = ".", features = ["dto", "client-api"] }
tokio = { version = "1.37.0", features = ["macros", "test-util"] }
tracing-subscriber = { version = "0.3.18", features = [
tokio = { version = "1.43.1", features = ["macros", "test-util"] }
tracing-subscriber = { version = "0.3.20", features = [
"registry",
"env-filter",
"ansi",
Expand Down
2 changes: 1 addition & 1 deletion libs/client-api-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ database-entity.workspace = true
collab-entity.workspace = true
shared-entity.workspace = true
collab-database.workspace = true
tracing-subscriber = { version = "0.3.18", features = ["registry", "env-filter", "ansi", "json"] }
tracing-subscriber = { version = "0.3.20", features = ["registry", "env-filter", "ansi", "json"] }
uuid.workspace = true
lazy_static = "1.4.0"
dotenvy = "0.15.7"
Expand Down
2 changes: 1 addition & 1 deletion libs/client-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ serde_repr = "0.1.18"
gotrue = { path = "../gotrue" }
tracing = { version = "0.1" }
thiserror = "1.0.56"
bytes = "1.9.0"
bytes = "1.11.1"
uuid.workspace = true
futures-util = "0.3.30"
futures-core = "0.3.30"
Expand Down
2 changes: 1 addition & 1 deletion libs/collab-rt-entity/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ collab = { workspace = true }
collab-entity = { workspace = true }
serde.workspace = true
serde_json.workspace = true
bytes = { version = "1.5", features = ["serde"] }
bytes = { version = "1.11", features = ["serde"] }
anyhow.workspace = true
actix = { version = "0.13", optional = true }
bincode.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion libs/collab-rt-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ bincode.workspace = true
anyhow.workspace = true
tracing.workspace = true
async-trait.workspace = true
tokio = "1.36.0"
tokio = "1.43.1"
collab-entity.workspace = true

[features]
Expand Down
2 changes: 1 addition & 1 deletion libs/collab-stream/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
redis = { workspace = true, features = ["aio", "tokio-comp", "connection-manager", "streams"] }
tokio = { version = "1.26", features = ["rt-multi-thread", "macros"] }
tokio = { version = "1.43", features = ["rt-multi-thread", "macros"] }
tokio-stream = { version = "0.1.14" }
thiserror = "1.0.58"
anyhow.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion libs/database/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ redis = { workspace = true, features = [
] }
futures-util = "0.3.30"
bytes.workspace = true
aws-sdk-s3 = { version = "1.36.0", features = [
aws-sdk-s3 = { version = "1.64.0", features = [
"behavior-version-latest",
"rt-tokio",
], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion libs/gotrue-entity/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ serde.workspace = true
serde_json.workspace = true
anyhow.workspace = true
lazy_static = "1.4.0"
jsonwebtoken = "8.3.0"
jsonwebtoken = "10.3.0"
app-error = { workspace = true, features = ["gotrue_error"] }
chrono = "0.4.33"
2 changes: 1 addition & 1 deletion libs/workspace-template/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ nanoid = "0.4.0"
serde = { version = "1.0.195", features = ["derive"] }

[dev-dependencies]
tokio = { version = "1.0", features = ["full"] }
tokio = { version = "1.43", features = ["full"] }
serde_json = "1.0"

[target.'cfg(target_arch = "wasm32")'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion services/appflowy-collaborate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ validator.workspace = true
rayon.workspace = true
tiktoken-rs = "0.6.0"
unicode-segmentation = "1.9.0"
aws-sdk-s3 = { version = "1.36.0", features = [
aws-sdk-s3 = { version = "1.64.0", features = [
"behavior-version-latest",
"rt-tokio",
] }
Expand Down
2 changes: 1 addition & 1 deletion services/appflowy-worker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ sqlx = { workspace = true, default-features = false, features = [
"migrate",
] }
secrecy = { workspace = true, features = ["serde"] }
aws-sdk-s3 = { version = "1.36.0", features = [
aws-sdk-s3 = { version = "1.64.0", features = [
"behavior-version-latest",
"rt-tokio",
] }
Expand Down