-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (30 loc) · 708 Bytes
/
Cargo.toml
File metadata and controls
37 lines (30 loc) · 708 Bytes
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
[package]
name = "word2vec-api"
version = "0.1.0"
authors = ["jayay <meine-adresse@live.de>"]
edition = "2018"
[lib]
name = "word2vec_api_lib"
path = "src/lib.rs"
[dependencies]
rocket = {version = "^0.5.0-rc.3", features=["json"]}
[dependencies.word2vec]
version = "0.3.2"
default-features = false
features = ["simd"]
[patch.crates-io]
word2vec = { git = 'https://github.com/jayay/word2vec', branch = 'simd' }
[dev-dependencies]
serde_json = "^1.0.111"
serde = { version = "^1.0", features = ["derive"] }
tokio = "^1.35.1"
[profile.release]
opt-level = 2
debug = false
rpath = false
lto = 'fat'
debug-assertions = false
codegen-units = 1
panic = 'unwind'
incremental = false
overflow-checks = false