[package]
edition = "2024"
rust-version = "1.85"
name = "thalassa"
version = "0.0.4"
authors = ["Mathieu Amiot <amiot.mathieu@gmail.com>"]
build = false
include = [
"src/**/*",
"LICENSE-*",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Implementation of the TLS presentation language data format defined in RFC8446"
documentation = "https://docs.rs/thalassa"
readme = "README.md"
keywords = [
"tlspl",
"mls",
"tls",
"rfc8446",
]
categories = [
"parser-implementations",
"encoding",
"wasm",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/OtaK/thalassa"
[package.metadata.docs.rs]
features = ["derive"]
rustdoc-args = [
"--cfg",
"docsrs",
"--generate-link-to-definition",
]
[features]
default = []
derive = ["dep:thalassa-derive"]
[lib]
name = "thalassa"
path = "src/lib.rs"
[dependencies.parsio]
version = "0.0.2"
features = ["std"]
[dependencies.simdutf8]
version = "0.1"
[dependencies.static_assertions]
version = "1"
[dependencies.thalassa-derive]
version = "0.0.4"
optional = true
[dependencies.thiserror]
version = "2"
[profile.bench]
opt-level = 3
lto = "thin"
codegen-units = 1
debug = 2
debug-assertions = false