From 7a31be4598c04a7014ba41de384cd1172b2283e7 Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Thu, 12 Jun 2025 19:37:28 -0400 Subject: [PATCH] Updated icarus_envy --- Cargo.lock | 31 +++++++++++++++++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 30 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a58bfb5..97be354 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -83,6 +83,26 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" +[[package]] +name = "const_format" +version = "0.2.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "126f97965c8ad46d6d9163268ff28432e8f6a1196a55578867832e3049df63dd" +dependencies = [ + "const_format_proc_macros", +] + +[[package]] +name = "const_format_proc_macros" +version = "0.2.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d57c2eccfb16dbac1f4e61e206105db5820c9d26c3c472bc17c774259ef7744" +dependencies = [ + "proc-macro2", + "quote", + "unicode-xid", +] + [[package]] name = "core-foundation" version = "0.9.4" @@ -450,9 +470,10 @@ dependencies = [ [[package]] name = "icarus_envy" -version = "0.2.1" -source = "git+ssh://git@git.kundeng.us/phoenix/icarus_envy.git?tag=v0.2.1-devel-7df6fe5821-950#7df6fe5821fc79ecf9fe94c6d1779bbf929f4360" +version = "0.2.2" +source = "git+ssh://git@git.kundeng.us/phoenix/icarus_envy.git?tag=v0.2.2-devel-c90f9fb0b4-950#c90f9fb0b4a8ca4aedd4ff09f6c754de8916eceb" dependencies = [ + "const_format", "dotenvy", ] @@ -1414,6 +1435,12 @@ version = "1.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" +[[package]] +name = "unicode-xid" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" + [[package]] name = "untrusted" version = "0.9.0" diff --git a/Cargo.toml b/Cargo.toml index 3899957..2fb9e8e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,4 +12,4 @@ serde = { version = "1.0.218", features = ["derive"] } serde_json = { version = "1.0.139" } uuid = { version = "1.16.0", features = ["v4", "serde"] } icarus_models = { git = "ssh://git@git.kundeng.us/phoenix/icarus_models.git", tag = "v0.4.3" } -icarus_envy = { git = "ssh://git@git.kundeng.us/phoenix/icarus_envy.git", tag = "v0.2.1-devel-7df6fe5821-950" } +icarus_envy = { git = "ssh://git@git.kundeng.us/phoenix/icarus_envy.git", tag = "v0.2.2-devel-c90f9fb0b4-950" }