From 2f0c1000867168fa60bde75d57d6499ad1a15a71 Mon Sep 17 00:00:00 2001 From: "NG (Graham)" Date: Sun, 3 Aug 2025 22:32:28 -0400 Subject: [PATCH] Switch over to release versions of non-repo same-org crates --- Cargo.lock | 10 +++++++++- Cargo.toml | 8 ++++---- rc_multiplayer/Cargo.toml | 6 ++++-- 3 files changed, 17 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5f2524f..9cf4888 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2198,7 +2198,9 @@ checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" [[package]] name = "literustlib" -version = "0.1.0" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39f90b22fbdd31314879adafa4a3b3275f8b95b497b4c2ff494013c900218136" dependencies = [ "bytes", "num_enum 0.7.4", @@ -2207,6 +2209,8 @@ dependencies = [ [[package]] name = "literustlib_server" version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27644d09965c75336dbd98913a90b0b92971a98011b1da3684a5636b495c0a27" dependencies = [ "async-recursion", "async-trait", @@ -3118,6 +3122,8 @@ source = "git+https://git.ngram.ca/OpenJam/polariton.git?rev=a27e90106037555d4aa [[package]] name = "polariton" version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e8f83852ae293ba0b4c7a188e1749d90cecf2b1b257bf3b7f74c8b344c3b81c" dependencies = [ "tokio", ] @@ -3125,6 +3131,8 @@ dependencies = [ [[package]] name = "polariton_server" version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8bccc3bc630fc4915278007d0bffe519d13ec7693068484c570ad371bf2190f" dependencies = [ "async-trait", "log", diff --git a/Cargo.toml b/Cargo.toml index cebf43b..828e559 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,10 +35,10 @@ libfj = { version = "0.8" } log = "0.4" env_logger = "0.11" clap = { version = "4.5", features = [ "derive" ] } -polariton = { version = "0.3", path = "../polariton", features = [ "tokio-async" ] } -polariton_server = { version = "0.3", path = "../polariton/server", features = [ "tokio-async" ] } -#polariton = { version = "0.2", features = [ "tokio-async" ] } -#polariton_server = { version = "0.3", features = [ "tokio-async" ] } +#polariton = { version = "0.3", path = "../polariton", features = [ "tokio-async" ] } +#polariton_server = { version = "0.3", path = "../polariton/server", features = [ "tokio-async" ] } +polariton = { version = "0.3", features = [ "tokio-async" ] } +polariton_server = { version = "0.3", features = [ "tokio-async" ] } serde = { version = "1.0", features = [ "derive" ] } serde_json = "1.0" async-trait = "0.1" diff --git a/rc_multiplayer/Cargo.toml b/rc_multiplayer/Cargo.toml index 184b87c..704479c 100644 --- a/rc_multiplayer/Cargo.toml +++ b/rc_multiplayer/Cargo.toml @@ -20,6 +20,8 @@ chrono.workspace = true atomic_float = "1.1" num-quaternion.workspace = true -literustlib_server = { version = "0.1", path = "../../LiteRustLib/server" } -literustlib = { version = "0.1", path = "../../LiteRustLib" } +#literustlib_server = { version = "0.1", path = "../../LiteRustLib/server" } +#literustlib = { version = "0.1", path = "../../LiteRustLib" } +literustlib_server = { version = "0.1" } +literustlib = { version = "0.1" } rlnl = { version = "0.1", path = "../../rlnl" }