Move all crates to new crates dir

This commit is contained in:
Joakim Frostegård 2023-10-18 23:53:41 +02:00
parent 3835da22ac
commit 9b032f7e24
128 changed files with 27 additions and 26 deletions

View file

@ -1,21 +1,22 @@
[workspace] [workspace]
members = [ members = [
"aquatic", "crates/combined_binary",
"aquatic_common", "crates/common",
"aquatic_http", "crates/http",
"aquatic_http_load_test", "crates/http_load_test",
"aquatic_http_protocol", "crates/http_protocol",
"aquatic_peer_id", "crates/peer_id",
"aquatic_toml_config", "crates/toml_config",
"aquatic_toml_config_derive", "crates/toml_config_derive",
"aquatic_udp", "crates/udp",
"aquatic_udp_bench", "crates/udp_bench",
"aquatic_udp_load_test", "crates/udp_load_test",
"aquatic_udp_protocol", "crates/udp_protocol",
"aquatic_ws", "crates/ws",
"aquatic_ws_load_test", "crates/ws_load_test",
"aquatic_ws_protocol", "crates/ws_protocol",
] ]
resolver = "2"
[workspace.package] [workspace.package]
version = "0.8.0" version = "0.8.0"
@ -27,16 +28,16 @@ readme = "./README.md"
rust-version = "1.64" rust-version = "1.64"
[workspace.dependencies] [workspace.dependencies]
aquatic_common = { version = "0.8.0", path = "./aquatic_common" } aquatic_common = { version = "0.8.0", path = "./crates/common" }
aquatic_http_protocol = { version = "0.8.0", path = "./aquatic_http_protocol" } aquatic_http_protocol = { version = "0.8.0", path = "./crates/http_protocol" }
aquatic_http = { version = "0.8.0", path = "./aquatic_http" } aquatic_http = { version = "0.8.0", path = "./crates/http" }
aquatic_peer_id = { version = "0.8.0", path = "./aquatic_peer_id" } aquatic_peer_id = { version = "0.8.0", path = "./crates/peer_id" }
aquatic_toml_config = { version = "0.8.0", path = "./aquatic_toml_config" } aquatic_toml_config = { version = "0.8.0", path = "./crates/toml_config" }
aquatic_toml_config_derive = { version = "0.8.0", path = "./aquatic_toml_config_derive" } aquatic_toml_config_derive = { version = "0.8.0", path = "./crates/toml_config_derive" }
aquatic_udp_protocol = { version = "0.8.0", path = "./aquatic_udp_protocol" } aquatic_udp_protocol = { version = "0.8.0", path = "./crates/udp_protocol" }
aquatic_udp = { version = "0.8.0", path = "./aquatic_udp" } aquatic_udp = { version = "0.8.0", path = "./crates/udp" }
aquatic_ws_protocol = { version = "0.8.0", path = "./aquatic_ws_protocol" } aquatic_ws_protocol = { version = "0.8.0", path = "./crates/ws_protocol" }
aquatic_ws = { version = "0.8.0", path = "./aquatic_ws" } aquatic_ws = { version = "0.8.0", path = "./crates/ws" }
[profile.release] [profile.release]
debug = false debug = false

View file

@ -8,7 +8,7 @@ edition.workspace = true
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
readme.workspace = true readme.workspace = true
rust-version.workspace = true rust-version = "1.70"
[lib] [lib]
name = "aquatic_ws" name = "aquatic_ws"

Some files were not shown because too many files have changed in this diff Show more