[package]
edition = "2024"
rust-version = "1.85"
name = "platform-data"
version = "2.0.0"
authors = [
"uselesssgoddess",
"Linksplatform Team <linksplatformtechnologies@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Data types and traits for the LinksPlatform"
homepage = "https://github.com/linksplatform/data-rs"
readme = "README.md"
keywords = [
"links",
"linksplatform",
"data-structures",
"associative",
]
categories = ["data-structures"]
license = "Unlicense"
repository = "https://github.com/linksplatform/data-rs"
[lib]
name = "platform_data"
path = "src/lib.rs"
[[test]]
name = "constants"
path = "tests/constants.rs"
[[test]]
name = "converters"
path = "tests/converters.rs"
[[test]]
name = "flow"
path = "tests/flow.rs"
[[test]]
name = "hybrid"
path = "tests/hybrid.rs"
[[test]]
name = "links"
path = "tests/links.rs"
[[test]]
name = "point"
path = "tests/point.rs"
[[test]]
name = "query"
path = "tests/query.rs"
[dependencies.beef]
version = "0.5.2"
[dependencies.platform-num]
version = "0.8.0"
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.quickcheck]
version = "1.1.0"
[dev-dependencies.quickcheck_macros]
version = "1.2.0"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
missing_safety_doc = "allow"
module_name_repetitions = "allow"
too_many_lines = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "allow"
[profile.release]
lto = true
codegen-units = 1
strip = true