[package]
edition = "2021"
name = "dsq-shared"
version = "0.2.0"
authors = ["Durable Programming LLC"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared types and utilities for DSQ crates"
readme = "README.md"
keywords = [
"data",
"shared",
"utilities",
]
categories = ["data-structures"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/durableprogramming/dsq"
[lib]
name = "dsq_shared"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.indexmap]
version = "2.1"
[dependencies.num-bigint]
version = "0.4"
features = ["serde"]
[dependencies.num-traits]
version = "0.2"
[dependencies.polars]
version = "0.52"
features = [
"lazy",
"csv",
"json",
"ipc",
"strings",
"dtype-datetime",
"dtype-date",
"dtype-time",
"describe",
"rows",
"regex",
"timezones",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.pretty_assertions]
version = "1.4"
[dev-dependencies.tempfile]
version = "3.8"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.rayon]
version = "1.10"
[target.'cfg(target_arch = "wasm32")'.dependencies.chrono]
version = "0.4"
features = [
"serde",
"serde",
"wasmbind",
]
[lints.clippy]
nursery = "allow"
pedantic = "allow"
[lints.clippy.approx_constant]
level = "allow"
priority = 2
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.multiple_crate_versions]
level = "allow"
priority = 2