Skip to content

Commit

Permalink
run formatter on cargo.toml files
Browse files Browse the repository at this point in the history
  • Loading branch information
StripedMonkey committed Sep 19, 2024
1 parent e9a55cf commit 229be05
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 19 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ codegen-units = 1
[workspace.dependencies]
log = "0.4"
tokio = { version = "1.40", features = [
"net",
"macros",
"rt-multi-thread",
"fs",
"io-util",
"macros",
"net",
"rt-multi-thread",
"sync",
] }

Expand Down
1 change: 0 additions & 1 deletion pumpkin-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@ serde.workspace = true
log.workspace = true

toml = "0.8"

2 changes: 1 addition & 1 deletion pumpkin-inventory/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition.workspace = true

[dependencies]
# For items
pumpkin-world = { path = "../pumpkin-world"}
pumpkin-world = { path = "../pumpkin-world" }

num-traits = "0.2"
num-derive = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion pumpkin-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition.workspace = true

[dependencies]
pumpkin-macros = { path = "../pumpkin-macros" }
pumpkin-world = { path = "../pumpkin-world" }
pumpkin-world = { path = "../pumpkin-world" }
pumpkin-core = { path = "../pumpkin-core" }

bytes = "1.7"
Expand Down
4 changes: 2 additions & 2 deletions pumpkin-registry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version.workspace = true
edition.workspace = true

[dependencies]
pumpkin-protocol = { path = "../pumpkin-protocol"}
pumpkin-core = { path = "../pumpkin-core"}
pumpkin-protocol = { path = "../pumpkin-protocol" }
pumpkin-core = { path = "../pumpkin-core" }

# nbt
fastnbt = { git = "https://github.com/owengage/fastnbt.git" }
Expand Down
2 changes: 1 addition & 1 deletion pumpkin-world/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version.workspace = true
edition.workspace = true

[dependencies]
pumpkin-core = { path = "../pumpkin-core"}
pumpkin-core = { path = "../pumpkin-core" }

fastnbt = { git = "https://github.com/owengage/fastnbt.git" }
tokio.workspace = true
Expand Down
25 changes: 15 additions & 10 deletions pumpkin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ plugins = ["pumpkin-plugin/plugins"]

[dependencies]
# pumpkin
pumpkin-core = { path = "../pumpkin-core"}
pumpkin-core = { path = "../pumpkin-core" }
pumpkin-config = { path = "../pumpkin-config" }
pumpkin-plugin = { path = "../pumpkin-plugin"}
pumpkin-inventory = { path = "../pumpkin-inventory"}
pumpkin-world = { path = "../pumpkin-world"}
pumpkin-entity = { path = "../pumpkin-entity"}
pumpkin-protocol = { path = "../pumpkin-protocol"}
pumpkin-registry = { path = "../pumpkin-registry"}
pumpkin-plugin = { path = "../pumpkin-plugin" }
pumpkin-inventory = { path = "../pumpkin-inventory" }
pumpkin-world = { path = "../pumpkin-world" }
pumpkin-entity = { path = "../pumpkin-entity" }
pumpkin-protocol = { path = "../pumpkin-protocol" }
pumpkin-registry = { path = "../pumpkin-registry" }

itertools = "0.13.0"

Expand All @@ -40,7 +40,12 @@ rsa = "0.9.6"
rsa-der = "0.3.0"

# authentication
reqwest = { version = "0.12.7", default-features= false, features = ["json", "rustls-tls", "http2", "macos-system-configuration"]}
reqwest = { version = "0.12.7", default-features = false, features = [
"http2",
"json",
"macos-system-configuration",
"rustls-tls",
] }

sha1 = "0.10.6"
digest = "=0.11.0-pre.9"
Expand All @@ -53,14 +58,14 @@ thiserror = "1.0"

# icon loading
base64 = "0.22.1"
image = { version = "0.25", default-features = false, features = ["png"]}
image = { version = "0.25", default-features = false, features = ["png"] }

# logging
simple_logger = "5.0.0"
log.workspace = true

# networking
mio = { version = "1.0.2", features = ["os-poll", "net"]}
mio = { version = "1.0.2", features = ["net", "os-poll"] }

parking_lot.workspace = true
crossbeam.workspace = true
Expand Down

0 comments on commit 229be05

Please sign in to comment.