From: Ben Pfaff Date: Mon, 12 Jan 2026 02:19:53 +0000 (-0800) Subject: rust: Release version 0.6.0. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc4534342439613443fd3d968f10c0d1ef9e6d54;p=pspp rust: Release version 0.6.0. --- diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 5257a627bb..cc9b74a22c 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -1889,7 +1889,7 @@ dependencies = [ [[package]] name = "pspp" -version = "0.5.0" +version = "0.6.0" dependencies = [ "aes", "anyhow", diff --git a/rust/pspp-lsp/Cargo.toml b/rust/pspp-lsp/Cargo.toml index 3449375d16..34b25842e4 100644 --- a/rust/pspp-lsp/Cargo.toml +++ b/rust/pspp-lsp/Cargo.toml @@ -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" diff --git a/rust/pspp/Cargo.toml b/rust/pspp/Cargo.toml index 6bda045b35..5ec0aac5c2 100644 --- a/rust/pspp/Cargo.toml +++ b/rust/pspp/Cargo.toml @@ -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" diff --git a/rust/pspp/src/format/decimals.rs b/rust/pspp/src/format/decimals.rs index 8813c00ff1..12c7e80d9d 100644 --- a/rust/pspp/src/format/decimals.rs +++ b/rust/pspp/src/format/decimals.rs @@ -9,8 +9,8 @@ //! , 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> = LazyLock::new(|| {