[[package]]
name = "pspp"
-version = "0.5.0"
+version = "0.6.0"
dependencies = [
"aes",
"anyhow",
[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"
[package]
name = "pspp"
-version = "0.5.0"
+version = "0.6.0"
edition = "2024"
authors = [ "Ben Pfaff", "John Darrington" ]
description = "Statistical analysis software"
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"
//! <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(|| {