-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (39 loc) · 1.15 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
39
40
41
42
43
44
45
46
47
48
[package]
name = "rtfcre"
version = "2.0.1"
description = "Python library for Rich Text Format with Court Reporting Extensions (RTF/CRE) dictionaries"
homepage = "https://github.com/sammdot/rtfcre"
authors = ["Sammi De Guzman <sammi@sammdot.ca>"]
edition = "2018"
readme = "README.md"
[package.metadata.maturin]
classifier = ["Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9"]
[patch.crates-io]
lexical-core = {git = 'https://github.com/Gelbpunkt/rust-lexical', branch = 'fix-warnings-and-update-deps'}
[lib]
name = "rtfcre"
crate_type = ["cdylib"]
[dependencies]
encoding_rs = "0.8.28"
linked-hash-map = "0.5.3"
lazy_static = "1.4.0"
regex = "1.4.2"
nom = "6"
pyo3-file = "0.3.3"
structopt = "0.3.13"
termcolor = "1.1.2"
[dependencies.serde_json]
version = "1.0"
features = ["preserve_order"]
[dependencies.pyo3]
version = "0.12.4"
[dev-dependencies]
criterion = "0.3.3"
rand = "0.8.0"
[[bench]]
name = "bench"
path = "src/bench.rs"
harness = false
[features]
extension-module = ["pyo3/extension-module"]
default = ["extension-module"]