[package]
edition = "2021"
name = "stam"
version = "0.18.7"
authors = ["Maarten van Gompel <proycon@anaproy.nl>"]
build = false
include = [
"src/**/*",
"tests/**/*",
"LICENSE",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "STAM is a powerful library for dealing with stand-off annotations on text. This is the Rust library."
homepage = "https://github.com/annotation/stam"
documentation = "https://docs.rs/stam"
readme = "README.md"
keywords = [
"text-processing",
"annotation",
"linguistics",
"standoff",
"nlp",
]
license = "GPL-3.0-only"
repository = "https://github.com/annotation/stam-rust"
[features]
csv = []
default = [
"csv",
"webanno",
"transpose",
"translate",
"textvalidation",
]
textvalidation = []
translate = ["transpose"]
transpose = []
webanno = []
[lib]
name = "stam"
path = "src/lib.rs"
[[test]]
name = "api"
path = "tests/api.rs"
[[test]]
name = "lowlevel"
path = "tests/lowlevel.rs"
[dependencies.base16ct]
version = "0.1.1"
features = ["alloc"]
[dependencies.chrono]
version = "0.4.42"
features = ["serde"]
[dependencies.csv]
version = "1.3.1"
[dependencies.datasize]
version = "0.2.15"
features = ["smallvec-types"]
[dependencies.minicbor]
version = "0.26.5"
features = [
"derive",
"std",
]
[dependencies.nanoid]
version = "0.4.0"
[dependencies.rayon]
version = "1.11.0"
[dependencies.regex]
version = "1.11.2"
[dependencies.sealed]
version = "0.6.0"
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.143"
[dependencies.serde_path_to_error]
version = "0.1.17"
[dependencies.sha1]
version = "0.10.6"
[dependencies.smallvec]
version = "1.15.1"
features = ["union"]
[dev-dependencies.criterion]
version = "0.4.0"