forked from BaseModelAI/cleora
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (38 loc) · 1005 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
[package]
name = "cleora"
version = "1.1.0"
authors = ["Piotr Babel <[email protected]>", "Jacek Dabrowski <[email protected]>", "Konrad Goluchowski <[email protected]>"]
edition = "2018"
license-file = "LICENSE"
readme = "README.md"
description = """
Cleora is a general-purpose model for efficient, scalable learning of stable and inductive entity embeddings for heterogeneous relational data.
"""
[build]
rustflags = ["-C", "target-cpu=native"]
[dependencies]
bus = "2.2.3"
clap = "2.33.3"
env_logger = "0.8.2"
log = "0.4.11"
memmap = "0.7.0"
rayon = "1.5.0"
rustc-hash = "1.1.0"
smallvec = "1.5.1"
twox-hash = "1.6.0"
simdjson-rust = {git = "https://github.com/SunDoge/simdjson-rust"}
ryu = "1"
ndarray = "0.14"
ndarray-npy = "0.7"
serde_json = "1"
uuid = { version = "0.8.1", features = ["v4"] }
[dev-dependencies]
criterion = "0.3.3"
insta = "1.3.0"
[[bench]]
name = "cleora_benchmark"
harness = false
[profile.release]
opt-level = 3
lto = true
codegen-units = 1