forked from 0b01/tectonicdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
75 lines (60 loc) · 1.23 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "tectonicdb"
version = "0.1.7"
authors = ["Ricky Han <[email protected]>"]
description = "fast datastore server for contiguous order book ticks"
repository = "https://github.com/rickyhan/tectonicdb"
keywords = ["finance", "datastore", "database", "financial"]
category = "Database"
license = "MIT"
readme = "README.md"
exclude = [
"db/*",
]
[lib]
name = "dtf"
path = "src/lib/lib.rs"
[[bin]]
name = "tectonic-server"
path = "src/bin/server/main.rs"
[[bin]]
name = "tectonic-cli"
path = "src/bin/cli/main.rs"
# [[bin]]
# name = "gen_dtfs"
# publish = false
# path = "src/bin/gen_dtfs/main.rs"
[[bin]]
name = "gen_train_data"
publish = false
path = "src/bin/gen_train_data/main.rs"
[[bin]]
name = "dtfcat"
publish = true
path = "src/bin/dtfcat/main.rs"
[[bin]]
name = "dtfrebin"
publish = true
path = "src/bin/dtfrebin/main.rs"
[features]
default = ["gcs"]
gcs = [ "reqwest"
, "uuid"
]
[dependencies]
# These crates are mandatory:
byteorder = "1.1.0"
bitflags = "1.0.0"
config = "0.6"
clap = "~2.26"
# Logging
fern = "0.4"
log = "0.3"
chrono = "0.4"
time = "*"
serde = "*"
serde_json = "*"
serde_derive = "*"
# google storage
reqwest = { version = "*", optional = true }
uuid = { version = "*", optional = true }