Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reorganize Crates #449

Merged
merged 18 commits into from
Aug 10, 2023
  •  
  •  
  •  
38 changes: 18 additions & 20 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ default = [
"scoreboard",
"world_border",
"weather",
"testing",
]
advancement = ["dep:valence_advancement"]
anvil = ["dep:valence_anvil"]
Expand All @@ -33,42 +34,37 @@ player_list = ["dep:valence_player_list"]
scoreboard = ["dep:valence_scoreboard"]
world_border = ["dep:valence_world_border"]
weather = ["dep:valence_weather"]
testing = []

[dependencies]
anyhow.workspace = true
bevy_app.workspace = true
bevy_ecs.workspace = true
bevy_log = { workspace = true, optional = true }
glam.workspace = true
uuid.workspace = true
bytes.workspace = true
rand.workspace = true
valence_advancement = { workspace = true, optional = true }
valence_anvil = { workspace = true, optional = true }
valence_biome.workspace = true
valence_block.workspace = true
valence_boss_bar = { workspace = true, optional = true }
valence_client.workspace = true
valence_core.workspace = true
valence_dimension.workspace = true
valence_entity.workspace = true
valence_layer.workspace = true
valence_server.workspace = true
valence_inventory = { workspace = true, optional = true }
valence_nbt.workspace = true
valence_network = { workspace = true, optional = true }
valence_player_list = { workspace = true, optional = true }
valence_registry.workspace = true
valence_scoreboard = { workspace = true, optional = true }
valence_world_border = { workspace = true, optional = true }
valence_packet.workspace = true
valence_weather = { workspace = true, optional = true }
valence_world_border = { workspace = true, optional = true }
valence_lang.workspace = true
valence_text.workspace = true
valence_ident.workspace = true

[dev-dependencies]
anyhow.workspace = true
clap.workspace = true
criterion.workspace = true
flume.workspace = true
noise.workspace = true # For the terrain example.
noise.workspace = true # For the terrain example.
tracing.workspace = true

[dev-dependencies.reqwest]
Expand Down Expand Up @@ -169,16 +165,11 @@ url = { version = "2.2.2", features = ["serde"] }
uuid = "1.3.1"
valence_advancement.path = "crates/valence_advancement"
valence_anvil.path = "crates/valence_anvil"
valence_biome.path = "crates/valence_biome"
valence_block.path = "crates/valence_block"
valence_build_utils.path = "crates/valence_build_utils"
valence_client.path = "crates/valence_client"
valence_core_macros.path = "crates/valence_core_macros"
valence_server.path = "crates/valence_server"
valence_packet_macros.path = "crates/valence_packet_macros"
valence_core.path = "crates/valence_core"
valence_dimension.path = "crates/valence_dimension"
valence_server_core.path = "crates/valence_server_core"
valence_entity.path = "crates/valence_entity"
valence_layer.path = "crates/valence_layer"
valence_inventory.path = "crates/valence_inventory"
valence_nbt = { path = "crates/valence_nbt", features = ["uuid"] }
valence_network.path = "crates/valence_network"
Expand All @@ -187,7 +178,14 @@ valence_registry.path = "crates/valence_registry"
valence_scoreboard.path = "crates/valence_scoreboard"
valence_world_border.path = "crates/valence_world_border"
valence_boss_bar.path = "crates/valence_boss_bar"
valence_packet.path = "crates/valence_packet"
valence_weather.path = "crates/valence_weather"
valence_math.path = "crates/valence_math"
valence_ident.path = "crates/valence_ident"
valence_ident_macros.path = "crates/valence_ident_macros"
valence_generated.path = "crates/valence_generated"
valence_text.path = "crates/valence_text"
valence_protocol.path = "crates/valence_protocol"
valence_protocol_macros.path = "crates/valence_protocol_macros"
valence_lang.path = "crates/valence_lang"
valence.path = "."
zip = "0.6.3"
Loading
Loading