[package]
name = "data_type"
version = "0.23.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <wandalen@obox.systems>",
"Dmytro Kryvoruchko <dmytro.kr@obox.systems>",
]
license = "MIT"
readme = "readme.md"
documentation = "https://docs.rs/data_type"
repository = "https://github.com/Wandalen/wTools/tree/master/module/core/data_type"
homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/data_type"
description = """
Collection of primal data types.
"""
categories = [ "algorithms", "development-tools" ]
keywords = [ "fundamental", "general-purpose" ]
[lints]
workspace = true
[package.metadata.docs.rs]
features = [ "full" ]
all-features = false
[features]
default = [
"enabled",
"dt_either",
"dt_interval",
"dt_collection",
]
full = [
"enabled",
"dt_either",
"dt_interval",
"dt_collection",
]
no_std = []
use_alloc = [ "no_std" ]
enabled = []
dt_interval = [ "interval_adapter/enabled" ]
dt_collection = [ "collection_tools/enabled", "collection_tools/collection_constructors" ]
dt_either = [ "either" ]
diagnostics_runtime_assertions = []
[dependencies]
either = { version = "~1.6", optional = true }
interval_adapter = { workspace = true }
collection_tools = { workspace = true }
[dev-dependencies]
test_tools = { workspace = true, features = [ "full" ] }