-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
39 lines (36 loc) · 1.01 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
# When releasing to crates.io:
# - Remove path dependencies
# - Update html_root_url.
# - Update doc url
# - Cargo.toml
# - README.md
# - Create "v0.1.x" git tag
[package]
authors = [
"Cole Lawrence <cole@colelawrence.com>",
"Dylan Ancel (leudz) <dylan.ancel@gmail.com>",
"Story.ai Team <team@story.ai>",
]
edition = "2018"
name = "layered-nlp"
version = "0.1.1"
description = "Highly-flexible data-oriented NLP framework"
repository = "https://github.com/storyscript/layered-nlp"
homepage = "https://github.com/storyscript/layered-nlp"
license = "MIT OR Apache-2.0"
categories = [
"text-processing",
"text-editors",
"parsing",
"wasm",
]
keywords = ["nlp", "layered-nlp", "framework", "grammar", "wasm"]
[workspace]
members = ["examples", "layered-part-of-speech", "layered-amount", "layered-clauses"]
[dependencies]
once_cell = "1.7"
unicode-segmentation = "1.7"
unicode-width = "0.1"
[dev-dependencies]
insta = "1.7.1"
rust_decimal = {version = "1.14", default-features = false, features = ["std"]}