-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (33 loc) · 1.02 KB
/
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
33
34
35
36
37
38
[package]
name = "stam-python"
version = "0.10.2"
edition = "2021"
authors = ["Maarten van Gompel <[email protected]>"]
description = "STAM is a library for dealing with standoff annotations on text, this is the python binding."
documentation = "https://stam-python.readthedocs.io/"
homepage = "https://annotation.github.io/stam"
include = ["pyproject.toml", "stam.pyi", "src/**/*","tests/**/*", "LICENSE", "README.md"]
license = "GPL-3.0-only"
readme = "README.md"
repository = "https://github.com/annotation/stam-python"
keywords = [ "text-processing", "annotation", "linguistics", "standoff", "nlp"]
[lib]
name = "stam"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.23.1", features = ["chrono"] }
rayon = "1.10.0"
stam = "0.16.5"
stam-tools = "0.9.2"
[features]
default = ["pyo3/extension-module"]
[target.x86_64-apple-darwin]
rustflags = [
"-C", "link-arg=-undefined",
"-C", "link-arg=dynamic_lookup",
]
[target.aarch64-apple-darwin]
rustflags = [
"-C", "link-arg=-undefined",
"-C", "link-arg=dynamic_lookup",
]