-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (29 loc) · 867 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "stam-tools"
version = "0.9.2"
edition = "2021"
authors = ["Maarten van Gompel <[email protected]>"]
description = "Command-line tools for working with stand-off annotations on text (STAM)"
documentation = "https://github.com/annotation/stam-tools"
homepage = "https://annotation.github.io/stam"
include = ["src/**/*","tests/**/*", "LICENSE", "README.md"]
license = "GPL-3.0-only"
readme = "README.md"
repository = "https://github.com/annotation/stam-tools"
keywords = [ "text-processing", "annotation", "linguistics", "standoff", "nlp"]
[dependencies]
stam = { version = "0.16.5" }
clap = "3.2.23"
html-escape = "0.2.13"
seal = "0.1.5"
atty = "0.2.14"
roxmltree = "0.20.0"
serde = { version = "1.0.215", features = ["derive"] }
toml = "0.8.19"
[lib]
name = "stamtools"
path = "src/lib.rs"
[[bin]]
name = "stam"
path = "src/main.rs"
doc = false