diff --git a/korangar/Cargo.toml b/korangar/Cargo.toml index d3937aff..c0ce2d40 100644 --- a/korangar/Cargo.toml +++ b/korangar/Cargo.toml @@ -11,15 +11,14 @@ chrono = { workspace = true } collision = { git = "https://github.com/rustgd/collision-rs.git" } derive-new = { workspace = true } image = "0.24.2" +korangar_debug = { workspace = true, optional = true } korangar_interface = { workspace = true, features = ["serde", "cgmath"] } korangar_networking = { workspace = true, features = ["debug"] } lunify = "1.1.0" mlua = { version = "0.8", features = ["lua51", "vendored"] } num = { workspace = true } -# TODO: Remove or move to workspace option-ext = "0.2.0" pathfinding = "2.2.2" -korangar_debug = { workspace = true, optional = true } ragnarok_bytes = { workspace = true, features = ["derive", "cgmath"] } ragnarok_formats = { workspace = true, features = ["interface"] } ragnarok_packets = { workspace = true, features = ["derive", "interface", "packet-to-prototype-element"] } @@ -39,7 +38,7 @@ xml-rs = "0.8.0" yazi = "0.1.4" [features] -patched_as_folder = [] debug = ["korangar_debug", "ragnarok_packets/debug", "random_color"] -unicode = ["korangar_debug/unicode"] +patched_as_folder = [] plain = ["debug"] +unicode = ["korangar_debug/unicode"] diff --git a/korangar_debug/Cargo.toml b/korangar_debug/Cargo.toml index dd6675fd..db2730b0 100644 --- a/korangar_debug/Cargo.toml +++ b/korangar_debug/Cargo.toml @@ -5,8 +5,8 @@ edition = "2021" [dependencies] chrono = { workspace = true } -lazy_static = { version = "1.4.0" } debug_procedural = { path = "procedural" } +lazy_static = { version = "1.4.0" } [features] unicode = [] diff --git a/korangar_debug/procedural/Cargo.toml b/korangar_debug/procedural/Cargo.toml index 18037012..ff2d4269 100644 --- a/korangar_debug/procedural/Cargo.toml +++ b/korangar_debug/procedural/Cargo.toml @@ -8,5 +8,5 @@ proc-macro = true [dependencies] proc-macro2 = "*" -syn = { version = "2.0", features = ["full"] } quote = "1.0" +syn = { version = "2.0", features = ["full"] } diff --git a/korangar_interface/Cargo.toml b/korangar_interface/Cargo.toml index 6fb9930b..ecf38c6e 100644 --- a/korangar_interface/Cargo.toml +++ b/korangar_interface/Cargo.toml @@ -6,10 +6,10 @@ edition = "2021" [dependencies] bitflags = { workspace = true } cgmath = { workspace = true, optional = true } +interface_procedural = { path = "procedural" } +korangar_debug = { workspace = true, optional = true } num = { workspace = true } option-ext = "0.2.0" -korangar_debug = { workspace = true, optional = true } -interface_procedural = { path = "procedural" } serde = { workspace = true, optional = true } [features] diff --git a/korangar_interface/procedural/Cargo.toml b/korangar_interface/procedural/Cargo.toml index 0abad5f7..9b8d85b1 100644 --- a/korangar_interface/procedural/Cargo.toml +++ b/korangar_interface/procedural/Cargo.toml @@ -8,5 +8,5 @@ proc-macro = true [dependencies] proc-macro2 = "*" -syn = { version = "2.0", features = ["full"] } quote = "1.0" +syn = { version = "2.0", features = ["full"] } diff --git a/korangar_networking/Cargo.toml b/korangar_networking/Cargo.toml index e1eeb118..93b8ddd1 100644 --- a/korangar_networking/Cargo.toml +++ b/korangar_networking/Cargo.toml @@ -9,9 +9,9 @@ ragnarok_packets = { workspace = true } tokio = { version = "1.37", features = ["full"] } [dev-dependencies] +korangar_debug = { workspace = true } reqwest = { version = "0.12", features = ["json"] } serde = { version = "1.0", features = ["derive"] } -korangar_debug = { workspace = true } [features] debug = [] diff --git a/ragnarok_formats/Cargo.toml b/ragnarok_formats/Cargo.toml index 24c8c291..5ec79835 100644 --- a/ragnarok_formats/Cargo.toml +++ b/ragnarok_formats/Cargo.toml @@ -4,10 +4,10 @@ version = "0.1.0" edition = "2021" [dependencies] +bitflags = { workspace = true } cgmath = { workspace = true } -ragnarok_bytes = { workspace = true, features = ["derive", "cgmath"] } korangar_interface = { workspace = true, optional = true } -bitflags = { workspace = true } +ragnarok_bytes = { workspace = true, features = ["derive", "cgmath"] } [features] interface = ["korangar_interface"] diff --git a/ragnarok_packets/Cargo.toml b/ragnarok_packets/Cargo.toml index 1e61984e..c9264487 100644 --- a/ragnarok_packets/Cargo.toml +++ b/ragnarok_packets/Cargo.toml @@ -5,9 +5,9 @@ edition = "2021" [dependencies] derive-new = { workspace = true } +korangar_interface = { workspace = true, optional = true } ragnarok_bytes = { workspace = true, features = ["derive"] } ragnarok_procedural = { workspace = true } -korangar_interface = { workspace = true, optional = true } [features] debug = [] diff --git a/ragnarok_procedural/Cargo.toml b/ragnarok_procedural/Cargo.toml index 80a74c37..168943e8 100644 --- a/ragnarok_procedural/Cargo.toml +++ b/ragnarok_procedural/Cargo.toml @@ -8,5 +8,5 @@ proc-macro = true [dependencies] proc-macro2 = "*" -syn = { version = "2.0", features = ["full"] } quote = "1.0" +syn = { version = "2.0", features = ["full"] }