-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
55 lines (48 loc) · 1.09 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
49
50
51
52
53
54
55
[package]
name = "finalfusion"
version = "0.18.0"
edition = "2021"
rust-version = "1.66"
description = "Reader and writer for common word embedding formats"
documentation = "https://docs.rs/finalfusion/"
keywords = ["embeddings", "word2vec", "glove", "finalfusion", "fasttext"]
homepage = "https://github.com/finalfusion/finalfusion-rust"
repository = "https://github.com/finalfusion/finalfusion-rust"
license = "MIT OR Apache-2.0"
readme = "README.md"
exclude = [".gitignore"]
[dependencies]
byteorder = "1"
fnv = "1"
itertools = "0.11"
murmur3 = "0.5"
ndarray = { version = "0.15", features = ["approx-0_5"] }
ordered-float = "4"
rand = "0.8"
rand_chacha = "0.3"
reductive = "0.9"
serde = { version = "1", features = ["derive"] }
smallvec = "1.7"
thiserror = "1"
toml = "0.8"
[dependencies.memmap2]
version = "0.9"
optional = true
[features]
default = ["memmap"]
memmap = ["memmap2"]
[dev-dependencies]
approx = "0.5"
criterion = "0.5"
lazy_static = "1"
maplit = "1"
tempfile = "3"
[[bench]]
name = "array"
harness = false
[[bench]]
name = "subword"
harness = false
[[bench]]
name = "quantized"
harness = false