-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
45 lines (41 loc) · 946 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
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "finalfrontier"
version = "0.10.0"
edition = "2021"
description = "Train/use word embeddings with subword units"
documentation = "https://docs.rs/finalfrontier/"
homepage = "https://finalfusion.github.io/finalfrontier"
repository = "https://github.com/finalfusion/finalfrontier.git"
rust-version = "1.70"
license = "MIT OR Apache-2.0"
[dependencies]
anyhow = "1"
chrono = "0.4"
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
conllu = "0.8"
finalfusion = "0.18"
fnv = "1"
indicatif = "0.17"
memmap = "0.7"
ndarray = "0.15"
ndarray-rand = "0.14"
num_cpus = "1"
rand = "0.8"
rand_core = "0.6"
rand_xorshift = "0.3"
serde = { version = "1", features = ["derive"] }
superslice = "1"
toml = "0.8"
udgraph = "0.8"
udgraph-projectivize = "0.8"
[build-dependencies]
git2 = "0.18"
rustversion = "1"
[dev-dependencies]
criterion = "0.5"
lazy_static = "1"
maplit = "1"
[[bench]]
name = "dot_product"
harness = false