data_type 0.22.0

Collection of primal data types.
Documentation
[package]
name = "data_type"
version = "0.22.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" ]
dependencies = {}
dev-dependencies = {}
build-dependencies = {}

[lints]
workspace = true

[package.metadata.docs.rs]
features = [ "full" ]
all-features = false

# = features

[features]

default = [
  "enabled",

  # "use_std",

  "dt_either",
  "dt_interval",
  "dt_collection",
  # "dt_make",
  # "dt_vectorized_from",
  # "type_constructor/default",
]
full = [
  "enabled",

  # "use_std",

  "dt_either",
  "dt_interval",
  "dt_collection",
  # "dt_make",
  # "dt_vectorized_from",
  # "type_constructor/full",
]
no_std = []
use_alloc = [ "no_std" ]
enabled = []

dt_interval = [ "interval_adapter/enabled" ]
dt_collection = [ "collection_tools/enabled", "collection_tools/collection_constructors" ]
dt_either = [ "either" ]

# Test infrastructure features
diagnostics_runtime_assertions = []

# qqq : for Anton : integrate all features of collection_tools into data_type and reuse tests

[dependencies]

## external
either = { version = "~1.6", optional = true }

## internal
interval_adapter = { workspace = true }
collection_tools = { workspace = true }

[dev-dependencies]
test_tools = { workspace = true, features = [ "full" ] }