Fix Cargo.toml
formatting (#7886)
This PR disables the formatting for `.toml` files within the Zed repo, as the formatter provided by the TOML language server messes things up. Release Notes: - N/A
This commit is contained in:
parent
ef551cedef
commit
ab6b9196e1
3 changed files with 100 additions and 119 deletions
|
@ -15,11 +15,11 @@ name = "seed"
|
|||
required-features = ["seed-support"]
|
||||
|
||||
[dependencies]
|
||||
axum = { version = "0.5", features = ["json", "headers", "ws"] }
|
||||
anyhow.workspace = true
|
||||
async-tungstenite = "0.16"
|
||||
aws-config = { version = "1.1.5" }
|
||||
aws-sdk-s3 = { version = "1.15.0" }
|
||||
async-tungstenite = "0.16"
|
||||
axum = { version = "0.5", features = ["json", "headers", "ws"] }
|
||||
axum-extra = { version = "0.3", features = ["erased-json"] }
|
||||
base64 = "0.13"
|
||||
chrono.workspace = true
|
||||
|
@ -42,26 +42,14 @@ rand.workspace = true
|
|||
reqwest = { version = "0.11", features = ["json"], optional = true }
|
||||
rpc.workspace = true
|
||||
scrypt = "0.7"
|
||||
sea-orm = { version = "0.12.x", features = [
|
||||
"sqlx-postgres",
|
||||
"postgres-array",
|
||||
"runtime-tokio-rustls",
|
||||
"with-uuid",
|
||||
] }
|
||||
sea-orm = { version = "0.12.x", features = ["sqlx-postgres", "postgres-array", "runtime-tokio-rustls", "with-uuid"] }
|
||||
semver.workspace = true
|
||||
serde.workspace = true
|
||||
serde_derive.workspace = true
|
||||
serde_json.workspace = true
|
||||
sha-1 = "0.9"
|
||||
smallvec.workspace = true
|
||||
sqlx = { version = "0.7", features = [
|
||||
"runtime-tokio-rustls",
|
||||
"postgres",
|
||||
"json",
|
||||
"time",
|
||||
"uuid",
|
||||
"any",
|
||||
] }
|
||||
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "postgres", "json", "time", "uuid", "any"] }
|
||||
text.workspace = true
|
||||
time.workspace = true
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
|
@ -76,7 +64,6 @@ util.workspace = true
|
|||
uuid.workspace = true
|
||||
|
||||
[dev-dependencies]
|
||||
release_channel.workspace = true
|
||||
async-trait.workspace = true
|
||||
audio.workspace = true
|
||||
call = { workspace = true, features = ["test-support"] }
|
||||
|
@ -101,6 +88,7 @@ node_runtime.workspace = true
|
|||
notifications = { workspace = true, features = ["test-support"] }
|
||||
pretty_assertions.workspace = true
|
||||
project = { workspace = true, features = ["test-support"] }
|
||||
release_channel.workspace = true
|
||||
rpc = { workspace = true, features = ["test-support"] }
|
||||
sea-orm = { version = "0.12.x", features = ["sqlx-sqlite"] }
|
||||
serde_json.workspace = true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue