rust: Release version 0.6.0.
authorBen Pfaff <blp@cs.stanford.edu>
Mon, 12 Jan 2026 02:19:53 +0000 (18:19 -0800)
committerBen Pfaff <blp@cs.stanford.edu>
Mon, 12 Jan 2026 02:19:53 +0000 (18:19 -0800)
rust/Cargo.lock
rust/pspp-lsp/Cargo.toml
rust/pspp/Cargo.toml
rust/pspp/src/format/decimals.rs

index 5257a627bb64d48e95fa2d367bd77266460a0c9d..cc9b74a22cb9399f82f3d0cfea2125a8f4663f40 100644 (file)
@@ -1889,7 +1889,7 @@ dependencies = [
 
 [[package]]
 name = "pspp"
-version = "0.5.0"
+version = "0.6.0"
 dependencies = [
  "aes",
  "anyhow",
index 3449375d16e29bf7d044ab2f73664da2a08ccadc..34b25842e4bfd47359ddd368a1fe11ab28f24035 100644 (file)
@@ -7,6 +7,6 @@ publish = false
 [dependencies]
 env_logger = "0.11.5"
 log = "0.4.22"
-pspp = { version = "0.5.0", path = "../pspp" }
+pspp = { version = "0.6.0", path = "../pspp" }
 tokio = { version = "1.39.3", features = ["full"] }
 tower-lsp = "0.20.0"
index 6bda045b35ee58e2f7c05a2eab136dac9cfb249f..5ec0aac5c2efa303e346cfd2bd4813f54ea33a40 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "pspp"
-version = "0.5.0"
+version = "0.6.0"
 edition = "2024"
 authors = [ "Ben Pfaff", "John Darrington" ]
 description = "Statistical analysis software"
@@ -54,7 +54,7 @@ displaydoc = "0.2.5"
 codepage-437 = "0.1.0"
 serde_path_to_error = "0.1.20"
 html_parser = "0.7.0"
-paper-sizes = { path = "../paper-sizes", features = ["serde"] }
+paper-sizes = { path = "../paper-sizes", version = "0.4.0", features = ["serde"] }
 enumset = "1.1.10"
 bit-vec = "0.8.0"
 erased-serde = "0.4.9"
index 8813c00ff1060d2193c594a42830c351be91771a..12c7e80d9d35298c70c2e6cd9237448d8c23f86e 100644 (file)
@@ -9,8 +9,8 @@
 //! <https://cldr.unicode.org/index/downloads>, rename it as
 //! `cldr-json-full.zip` in the same directory as `build.rs`,
 //! and touch `build.rs` to force a rebuild.
-use crate::format::Decimal;
 use std::{collections::HashMap, sync::LazyLock};
+use crate::format::Decimal;
 
 /// Map from language to decimal point.
 pub static LANG_TO_DECIMAL: LazyLock<HashMap<&'static str, Decimal>> = LazyLock::new(|| {