-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
46 lines (42 loc) · 957 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
46
[package]
name = "serenade"
description = "Serenade: Session-based recommender system"
keywords = ["recommendation"]
categories = ["science"]
readme = "README.md"
repository = "https://github.com/bolcom/serenade/"
license = "Apache-2.0"
version = "0.3.1"
authors = ["[email protected]"]
edition = "2021"
[[bin]]
name = "serving"
path = "src/bin/serving.rs"
[dependencies]
csv = "1.1"
rand = "0.8"
itertools = "0.10"
actix-web = "3.3"
rocksdb = {version = "0.21", default-features = false}
bincode = "1.3"
chrono = "0.4"
serde_derive = "1.0"
serde = "1.0"
actix-web-prom = "0.5"
sys-info = "0.9"
hashbrown = {version = "0.11", features = ["rayon"]}
tdigest = "0.2"
rand_pcg = "0.3.0"
float-cmp = "0.8.0"
uuid = "0.8"
md5 = "0.7"
rayon = "1.5.0"
dary_heap = "0.2.2"
num-format = "0.4.0"
bencher = "0.1"
avro-rs = {version = "0.13", features = ["snappy"]}
stats-cli = "2.0.0"
justconfig = "1.0"
tpe = "0.2.0"
anyhow = "1.0.53"
indicatif = "0.16.2"