[package]
name = "speedy"
version = "0.8.7"
authors = ["Jan Bujak <j@exia.io>"]
repository = "https://github.com/koute/speedy"
homepage = "https://github.com/koute/speedy"
documentation = "https://docs.rs/speedy/*/speedy/"
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["serialization"]
categories = ["encoding"]
description = "A fast binary serialization framework"
edition = "2018"
[dependencies]
memoffset = "0.9"
speedy-derive = { version = "= 0.8.7", path = "speedy-derive", optional = true }
chrono = { version = "0.4", optional = true }
glam = { version = ">= 0.15, <= 0.25", optional = true }
smallvec = { version = "1", optional = true }
regex = { version = "1", optional = true, default-features = false }
uuid = {version = "1", optional = true, default-features = false }
indexmap_v1 = { package = "indexmap", version = "1", optional = true }
indexmap_v2 = { package = "indexmap", version = "2", optional = true }
[dev-dependencies]
quickcheck = "0.9"
paste = "1"
tempfile = "3"
[profile.release]
panic = "abort"
[workspace]
members = [".", "speedy-derive", "static-tests"]
[features]
default = ["speedy-derive"]
external_doc = []
indexmap_v1 = ["dep:indexmap_v1"]
indexmap_v2 = ["dep:indexmap_v2"]
indexmap = ["indexmap_v1"]
[package.metadata.docs.rs]
features = ["external_doc"]