From 8217b1300cd8b8eb36ffe3734e6bb3fa7d1fefa7 Mon Sep 17 00:00:00 2001 From: Frodo45127 Date: Sun, 3 Mar 2024 01:29:17 +0100 Subject: [PATCH] Use custom repo for steamworks-rs until they merge the file_name pr. --- Cargo.lock | 4 +++- workshopper/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6644047..44eab26 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2494,7 +2494,7 @@ dependencies = [ [[package]] name = "runcher" -version = "0.7.101" +version = "0.7.102" dependencies = [ "anyhow", "base64", @@ -3032,6 +3032,7 @@ dependencies = [ [[package]] name = "steamworks" version = "0.11.0" +source = "git+https://github.com/Frodo45127/steamworks-rs.git#fce751ffdb166ede397c106388930a0780db6196" dependencies = [ "bitflags 1.3.2", "lazy_static", @@ -3043,6 +3044,7 @@ dependencies = [ [[package]] name = "steamworks-sys" version = "0.11.0" +source = "git+https://github.com/Frodo45127/steamworks-rs.git#fce751ffdb166ede397c106388930a0780db6196" [[package]] name = "strsim" diff --git a/workshopper/Cargo.toml b/workshopper/Cargo.toml index ccb854f..80609a6 100644 --- a/workshopper/Cargo.toml +++ b/workshopper/Cargo.toml @@ -32,7 +32,7 @@ indicatif = "^0.17" # Steam Workshop support. #steamworks = { version = "^0.11", features = ["serde"] } -steamworks = { path = "./../../steamworks-rs", features = ["serde"] } +steamworks = { git = "https://github.com/Frodo45127/steamworks-rs.git", features = ["serde"] } # Serialization support. serde = "^1.0"