From ddd5f89bb4a938bad54495a94fcce1b22c7ffef3 Mon Sep 17 00:00:00 2001 From: k88hudson-cfa Date: Mon, 17 Mar 2025 12:52:19 -0400 Subject: [PATCH] fix: Update the derive crate to have correct version --- Cargo.toml | 7 +++++-- ixa-derive/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b9473728..2ba660c6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,6 +8,7 @@ license = "Apache-2.0" homepage = "https://github.com/CDCgov/ixa" [dependencies] +ixa-derive = { version = "0.0.1", path = "ixa-derive" } rand = "^0.8.5" csv = "^1.3.1" serde = { version = "^1.0.217", features = ["derive"] } @@ -16,7 +17,6 @@ serde_json = "^1.0.135" bincode = "^1.3.3" reikna = "^0.12.3" roots = "0.0.8" -ixa-derive = { path = "ixa-derive" } seq-macro = "^0.3.5" paste = "^1.0.15" ctor = "^0.2.8" @@ -24,7 +24,10 @@ clap = { version = "^4.5.26", features = ["derive"] } shlex = "^1.3.0" rustyline = "^15.0.0" log = "^0.4.22" -log4rs = { version = "^1.3.0", features = ["console_appender", "pattern_encoder"] } +log4rs = { version = "^1.3.0", features = [ + "console_appender", + "pattern_encoder", +] } axum = "0.8.1" tokio = { version = "1", features = ["full"] } reqwest = { version = "0.12.12", features = ["blocking", "json"] } diff --git a/ixa-derive/Cargo.toml b/ixa-derive/Cargo.toml index 0073403d..cd4bc9e6 100644 --- a/ixa-derive/Cargo.toml +++ b/ixa-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ixa-derive" -version = "0.1.0" +version = "0.0.1" edition = "2021" description = "Procedural macros for Ixa" repository = "https://github.com/CDCgov/ixa"