[package]
edition = "2021"
name = "orbital-data"
version = "0.1.1"
authors = ["Sean O'Rourke"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared typed dataset primitives (Dataset, DataRecord, DataValue) for Orbital tables and charts"
homepage = "https://unified-field-dev.github.io/orbital/"
documentation = "https://docs.rs/orbital-data"
readme = false
keywords = [
"leptos",
"ui",
"wasm",
"components",
"design-system",
]
categories = [
"web-programming",
"gui",
]
license = "MIT"
repository = "https://github.com/unified-field-dev/orbital"
[package.metadata.docs.rs]
all-features = false
no-default-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "orbital_data"
path = "src/lib.rs"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"std",
"wasmbind",
"serde",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = [
"derive",
"derive",
]
[lints.clippy]
clone_on_copy = "allow"
module_inception = "allow"
needless_range_loop = "allow"
question_mark = "allow"
redundant_locals = "allow"
too_many_arguments = "allow"
type_complexity = "allow"
unused_unit = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"
[lints.rust.unused]
level = "warn"
priority = -1