-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
52 lines (47 loc) · 1.11 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
[package]
name = "graphsurge"
version = "0.1.0"
authors = ["Siddhartha Sahu <[email protected]>"]
description = "System for graph analytics on collections of views."
repository = "https://github.com/dsg-uwaterloo/graphsurge"
readme = "README.md"
license = "Apache-2.0"
keywords = ["graph", "graph-analytics", "view-collection"]
categories = ["database-implementations"]
edition = "2018"
[dependencies]
hashbrown = { version = "0.9", features = ["serde"] }
rand="0.8"
chrono = "0.4"
log = { version = "0.4", features = ["std"] }
psutil = "3.1"
rustyline = "7.1"
itertools = "0.10"
derive-new = "0.5"
csv = "1.1"
crossbeam-utils = "0.8"
crossbeam-channel = "0.5"
clap = { version = "2.33", default-features = false }
pest = "2.1"
pest_derive = "2.1"
bincode = "1.2"
serde = "1.0"
serde_derive = "1.0"
graph_map = "0.1"
abomonation = "0.7"
abomonation_derive = "0.5"
timely_sort="0.1"
timely = "0.11"
differential-dataflow = "0.11"
gs_analytics_api = { path = "gs_analytics_api"}
[features]
nd-timestamps = []
[[bin]]
name = "graphsurge"
path = "src/main.rs"
bench = false
[lib]
bench = false
[profile.release]
lto = "thin"
debug = false