From f8e126acfb97241fb963581f11f346009a67acf6 Mon Sep 17 00:00:00 2001 From: Christopher Rabotin Date: Sat, 13 Jul 2024 17:39:53 -0600 Subject: [PATCH 1/2] Unlocking crate versions --- Cargo.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1fd8111f..1d5b780d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,19 +27,19 @@ exclude = [ [workspace.dependencies] hifitime = "4.0.0-alpha" -memmap2 = "=0.9.4" -crc32fast = "=1.4.2" +memmap2 = "0.9.4" +crc32fast = "1.4.2" der = { version = "0.7.8", features = ["derive", "alloc", "real"] } -log = "=0.4" -pretty_env_logger = "=0.5" +log = "0.4" +pretty_env_logger = "0.5" tabled = "=0.15" const_format = "0.2" nalgebra = { version = "0.32", default-features = true, features = [ "serde-serialize", ] } -approx = "=0.5.1" +approx = "0.5.1" zerocopy = { version = "0.7.26", features = ["derive"] } -bytes = "=1.6.0" +bytes = "1.6.0" snafu = { version = "0.8.0", features = ["backtrace"] } lexical-core = "0.8.5" heapless = "0.8.0" @@ -50,7 +50,7 @@ serde = "1" serde_derive = "1" serde_dhall = "0.12" -anise = { version = "0.4.0", path = "anise", default-features = false } +anise = { version = "0.4.1", path = "anise", default-features = false } [profile.bench] debug = true From ae0a9a0c0ebfed2bde25cb95f5c4024febdfd55d Mon Sep 17 00:00:00 2001 From: Christopher Rabotin Date: Sun, 14 Jul 2024 13:05:21 -0600 Subject: [PATCH 2/2] Necessary version bump b/c bytes poor version mgmt --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1d5b780d..11362195 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ resolver = "2" members = ["anise", "anise-cli", "anise-gui", "anise-py"] [workspace.package] -version = "0.4.1" +version = "0.4.2" edition = "2021" authors = ["Christopher Rabotin "] description = "ANISE provides a toolkit and files for Attitude, Navigation, Instrument, Spacecraft, and Ephemeris data. It's a modern replacement of NAIF SPICE file." @@ -50,7 +50,7 @@ serde = "1" serde_derive = "1" serde_dhall = "0.12" -anise = { version = "0.4.1", path = "anise", default-features = false } +anise = { version = "0.4.2", path = "anise", default-features = false } [profile.bench] debug = true