From 9eb8397e6a03c9a6354974a2ac78c85090740097 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Tue, 6 Feb 2024 20:28:59 -0800 Subject: [PATCH] add id dep --- Cargo.lock | 11 +++++++++++ Cargo.toml | 1 + 2 files changed, 12 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index a7f3d48..6477863 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -661,6 +661,16 @@ dependencies = [ "objc2", ] +[[package]] +name = "id" +version = "0.1.0" +source = "git+https://git.itzana.me/Quaternions/id?rev=faca9fb6a8eb0c7f0e2796fbfad9eac16875cbd6#faca9fb6a8eb0c7f0e2796fbfad9eac16875cbd6" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.48", +] + [[package]] name = "indexmap" version = "2.2.1" @@ -1282,6 +1292,7 @@ dependencies = [ "configparser", "ddsfile", "glam", + "id", "parking_lot", "pollster", "strafesnet_common", diff --git a/Cargo.toml b/Cargo.toml index 950e154..c5001f7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,6 +10,7 @@ bytemuck = { version = "1.13.1", features = ["derive"] } configparser = "3.0.2" ddsfile = "0.5.1" glam = "0.25.0" +id = { git = "https://git.itzana.me/Quaternions/id", rev = "faca9fb6a8eb0c7f0e2796fbfad9eac16875cbd6" } parking_lot = "0.12.1" pollster = "0.3.0" strafesnet_common = { git = "https://git.itzana.me/StrafesNET/common", rev = "434ca29aef7e3015c9ca1ed45de8fef42e33fdfb" }