Skip to content

Commit

Permalink
Merge pull request #47 from Luk-ESC/master
Browse files Browse the repository at this point in the history
Fix compilation of individual packages
  • Loading branch information
Snowiiii authored Aug 21, 2024
2 parents b0df1a7 + 8263d88 commit 59a4fe5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ lto = true
codegen-units = 1

[workspace.dependencies]
tokio = { version = "1.39.2", features = ["net", "macros", "rt-multi-thread", "fs", "io-util"] }
tokio = { version = "1.39.2", features = ["net", "macros", "rt-multi-thread", "fs", "io-util", "sync"] }
rayon = "1.10.0"
uuid = { version = "1.10.0", features = ["serde", "v3"] }
2 changes: 1 addition & 1 deletion pumpkin-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pumpkin-text = { path = "../pumpkin-text" }

bytes = "1.7"

uuid = "1.10"
uuid.workspace = true

serde = { version = "1.0", features = ["derive"] }
# to parse strings to json responses
Expand Down
2 changes: 1 addition & 1 deletion pumpkin-text/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ edition.workspace = true
[dependencies]
serde = { version = "1.0", features = ["derive"] }
fastnbt = { git = "https://github.com/owengage/fastnbt.git" }
uuid = "1.10"
uuid.workspace = true
3 changes: 1 addition & 2 deletions pumpkin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ log = "0.4"
mio = { version = "1.0.1", features = ["os-poll", "net"]}
crossbeam-channel = "0.5.13"

uuid = { version = "1.10", features = ["serde", "v3"]}

uuid.workspace = true
tokio.workspace = true
rayon.workspace = true

0 comments on commit 59a4fe5

Please sign in to comment.