Skip to content

Commit

Permalink
stash
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewgazelka committed Nov 16, 2024
1 parent 99ccbab commit c458f1b
Show file tree
Hide file tree
Showing 17 changed files with 160 additions and 170 deletions.
12 changes: 1 addition & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ convert_case = '0.6.0'
criterion = '0.5.1'
derive-build = '0.1.1'
directories = '5.0.1'
dotenvy = "0.15.7"
enumset = '1.1.5'
fastrand = '2.1.0'
futures-util = '0.3.31'
Expand Down
24 changes: 12 additions & 12 deletions crates/bvh-region/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ plotters = {workspace = true, features = [
"image"
], optional = true}
plotters-bitmap = {workspace = true, optional = true}
serde = {workspace = true, features = ["derive"]}
arrayvec.workspace = true
fastrand.workspace = true
itertools.workspace = true
ordered-float.workspace = true
rayon.workspace = true
tracing.workspace = true
serde = {workspace = true}
arrayvec = {workspace = true}
fastrand = {workspace = true}
itertools = {workspace = true}
ordered-float = {workspace = true}
rayon = {workspace = true}
tracing = {workspace = true}

[dev-dependencies]
criterion.workspace = true
divan.workspace = true
rand.workspace = true
tango-bench.workspace = true
tracing-subscriber.workspace = true
criterion = {workspace = true}
divan = {workspace = true}
rand = {workspace = true}
tango-bench = {workspace = true}
tracing-subscriber = {workspace = true}

[features]
default = []
Expand Down
12 changes: 6 additions & 6 deletions crates/hyperion-clap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ readme = "README.md"
publish = false

[dependencies]
clap = { version = "4.5.20", features = ["derive"] }
flecs_ecs.workspace = true
hyperion-command.workspace = true
tracing.workspace = true
hyperion.workspace = true
valence_protocol.workspace = true
clap ={ workspace = true }
flecs_ecs = { workspace = true }
hyperion-command = { workspace = true }
tracing = { workspace = true }
hyperion = { workspace = true }
valence_protocol = { workspace = true }

[lints]
workspace = true
10 changes: 5 additions & 5 deletions crates/hyperion-command/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ readme = "README.md"
publish = false

[dependencies]
flecs_ecs.workspace = true
hyperion.workspace = true
gxhash.workspace = true
tracing.workspace = true
indexmap.workspace = true
flecs_ecs = {workspace = true}
hyperion = {workspace = true}
gxhash = {workspace = true}
tracing = {workspace = true}
indexmap = {workspace = true}

[lints]
workspace = true
10 changes: 5 additions & 5 deletions crates/hyperion-crafting/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
cargo-features = ["edition2024"]

[dependencies]
anyhow.workspace = true
derive-build.workspace = true
flecs_ecs.workspace = true
slotmap.workspace = true
valence_protocol.workspace = true
anyhow = { workspace = true }
derive-build = { workspace = true }
flecs_ecs = { workspace = true }
slotmap = { workspace = true }
valence_protocol = { workspace = true }

[lints]
workspace = true
Expand Down
9 changes: 5 additions & 4 deletions crates/hyperion-inventory/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
cargo-features = ["edition2024"]

[dependencies]
hyperion-crafting.workspace = true
roaring.workspace = true
snafu.workspace = true
valence_protocol.workspace = true
hyperion-crafting = {workspace = true}
roaring = {workspace = true}
snafu = {workspace = true}
valence_protocol = {workspace = true}
flecs_ecs = {workspace = true}

[lints]
workspace = true
Expand Down
18 changes: 9 additions & 9 deletions crates/hyperion-permission/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
cargo-features = ["edition2024"]

[dependencies]
anyhow.workspace = true
clap.workspace = true
flecs_ecs.workspace = true
heed.workspace = true
hyperion.workspace = true
num-derive.workspace = true
num-traits.workspace = true
tracing.workspace = true
uuid.workspace = true
anyhow = {workspace = true}
clap = {workspace = true}
flecs_ecs = {workspace = true}
heed = {workspace = true}
hyperion = {workspace = true}
num-derive = {workspace = true}
num-traits = {workspace = true}
tracing = {workspace = true}
uuid = {workspace = true}

[lints]
workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/hyperion-proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cargo-features = ["edition2024"]
[build-dependencies]

[dependencies]
rkyv.workspace = true
rkyv = {workspace = true}

[lints]
workspace = true
Expand Down
32 changes: 16 additions & 16 deletions crates/hyperion-proxy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
cargo-features = ["edition2024"]

[dependencies]
colored.workspace = true
kanal.workspace = true
papaya.workspace = true
rkyv.workspace = true
rustc-hash.workspace = true
colored = {workspace = true}
kanal = {workspace = true}
papaya = {workspace = true}
rkyv = {workspace = true}
rustc-hash = {workspace = true}
tokio = {workspace = true, features = ["full", "tracing"]}
tokio-util = {workspace = true, features = ["full"]}
anyhow.workspace = true
bvh.workspace = true
bytes.workspace = true
clap.workspace = true
glam.workspace = true
heapless.workspace = true
hyperion-proto.workspace = true
more-asserts.workspace = true
slotmap.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
anyhow = {workspace = true}
bvh = {workspace = true}
bytes = {workspace = true}
clap = {workspace = true}
glam = {workspace = true}
heapless = {workspace = true}
hyperion-proto = {workspace = true}
more-asserts = {workspace = true}
slotmap = {workspace = true}
tracing = {workspace = true}
tracing-subscriber = {workspace = true}

[lints]
workspace = true
Expand Down
14 changes: 7 additions & 7 deletions crates/hyperion-rank-tree/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ readme = "README.md"
publish = false

[dependencies]
hyperion-inventory.workspace = true
hyperion.workspace = true
toml.workspace = true
valence_protocol.workspace = true
clap.workspace = true
flecs_ecs.workspace = true
bytemuck.workspace = true
hyperion-inventory = { workspace = true }
hyperion = { workspace = true }
toml = { workspace = true }
valence_protocol = { workspace = true }
clap = { workspace = true }
flecs_ecs = { workspace = true }
bytemuck = { workspace = true }

[lints]
workspace = true
2 changes: 1 addition & 1 deletion crates/hyperion-rank-tree/src/item.rs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
mod ext;
mod ext;
2 changes: 1 addition & 1 deletion crates/hyperion-rank-tree/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use clap::ValueEnum;

pub mod inventory;
pub mod skin;
pub mod item;
pub mod skin;

mod util;

Expand Down
24 changes: 12 additions & 12 deletions crates/hyperion-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
cargo-features = ["edition2024"]

[dependencies]
flecs_ecs.workspace = true
anyhow.workspace = true
directories.workspace = true
sha2.workspace = true
hex.workspace = true
tracing.workspace = true
reqwest.workspace = true
flate2.workspace = true
tar.workspace = true
tokio-util.workspace = true
tokio.workspace = true
futures-util.workspace = true
flecs_ecs = {workspace = true}
anyhow = {workspace = true}
directories = {workspace = true}
sha2 = {workspace = true}
hex = {workspace = true}
tracing = {workspace = true}
reqwest = {workspace = true}
flate2 = {workspace = true}
tar = {workspace = true}
tokio-util = {workspace = true}
tokio = {workspace = true}
futures-util = {workspace = true}

[lints]
workspace = true
Expand Down
Loading

0 comments on commit c458f1b

Please sign in to comment.