Skip to content

Commit

Permalink
Format TOML files using taplo
Browse files Browse the repository at this point in the history
  • Loading branch information
kasugamirai committed Sep 17, 2024
1 parent 50fe3ee commit e3245b9
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 40 deletions.
34 changes: 17 additions & 17 deletions websocket/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,38 +39,38 @@ async-trait = "0.1.80"
axum = { version = "0.7", features = ["ws"] }
axum-extra = { version = "0.9", features = ["typed-header"] }
axum-macros = "0.4"
base64 = "0.22.1"
cached = "0.53.1"
chrono = { version = "0.4", features = ["serde"] }
dashmap = "6.1.0"
dotenv = "0.15.0"
futures-util = "0.3"
google-cloud-storage = "0.18"
http = "1.1.0"
http-body-util = "0.1.0"
hyper = "1.4.1"
jsonwebtoken = "9.3.0"
once_cell = "1.18.0"
rand = "0.8"
redis = { version = "0.25.4", features = ["aio", "tokio-comp"] }
reqwest = { version = "0.12.7", features = ["json"] }
rsa = { version = "0.9.6", features = ["pem"] }
rslock = "0.3.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0.117", features = ["arbitrary_precision"] }
thiserror = "1.0.63"
tokio = { version = "1.38.0", features = ["full", "time"] }
tokio-tungstenite = "0.24.0"
tower = { version = "0.4", features = ["timeout"] }
tower-http = { version = "0.5", features = ["fs", "trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = "2.5.2"
uuid = { version = "1.8.0", features = [
"fast-rng",
"macro-diagnostics",
"serde",
"v4",
] }
yrs = "0.18"
reqwest = { version = "0.12.7", features = ["json"] }
thiserror = "1.0.63"
jsonwebtoken = "9.3.0"
wiremock = "0.6.2"
rsa = { version = "0.9.6", features = ["pem"] }
rand = "0.8"
base64 = "0.22.1"
hyper = "1.4.1"
http-body-util = "0.1.0"
once_cell = "1.18.0"
dotenv = "0.15.0"
url = "2.5.2"
http = "1.1.0"
dashmap = "6.1.0"
cached = "0.53.1"
tokio-tungstenite = "0.24.0"
futures-util = "0.3"
yrs = "0.18"
2 changes: 1 addition & 1 deletion websocket/crates/common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "common"
authors.workspace = true
edition.workspace = true
exclude.workspace = true
homepage.workspace = true
license.workspace = true
name = "common"
repository.workspace = true
rust-version.workspace = true
version.workspace = true
Expand Down
36 changes: 18 additions & 18 deletions websocket/crates/infra/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,42 +11,42 @@ rust-version.workspace = true
version.workspace = true

[dependencies]
services = { path = "../services" }
common = { path = "../common" }
services = { path = "../services" }

flow-websocket-domain.workspace = true

async-trait.workspace = true
axum.workspace = true
axum-extra.workspace = true
axum-macros.workspace = true
base64.workspace = true
cached.workspace = true
chrono.workspace = true
dashmap.workspace = true
dotenv.workspace = true
futures-util.workspace = true
google-cloud-storage.workspace = true
http.workspace = true
http-body-util.workspace = true
hyper.workspace = true
jsonwebtoken.workspace = true
once_cell.workspace = true
rand.workspace = true
redis.workspace = true
reqwest.workspace = true
rsa.workspace = true
rslock.workspace = true
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
tokio.workspace = true
tokio-tungstenite.workspace = true
tower.workspace = true
tower-http.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
url.workspace = true
uuid.workspace = true
yrs.workspace = true
thiserror.workspace = true
reqwest.workspace = true
jsonwebtoken.workspace = true
wiremock.workspace = true
rsa.workspace = true
rand.workspace = true
base64.workspace = true
hyper.workspace = true
http-body-util.workspace = true
once_cell.workspace = true
dotenv.workspace = true
url.workspace = true
http.workspace = true
dashmap.workspace = true
cached.workspace = true
tokio-tungstenite.workspace = true
futures-util.workspace = true
yrs.workspace = true
8 changes: 4 additions & 4 deletions websocket/crates/services/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[package]
name = "services"
authors.workspace = true
edition.workspace = true
exclude.workspace = true
homepage.workspace = true
license.workspace = true
name = "services"
repository.workspace = true
rust-version.workspace = true
version.workspace = true

[dependencies]
tokio.workspace = true
axum.workspace = true
reqwest.workspace = true
http.workspace = true
reqwest.workspace = true
thiserror.workspace = true
wiremock.workspace = true
tokio.workspace = true
tower.workspace = true
wiremock.workspace = true

0 comments on commit e3245b9

Please sign in to comment.