-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
48 lines (43 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
[package]
name = "expjobserver"
version = "0.10.1"
authors = ["mark-i-m"]
edition = "2018"
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["jobs", "tasks", "cluster", "automate", "experiments"]
repository = "https://github.com/mark-i-m/jobserver"
description = """
This is a job server and client for running many experiments across many test
platforms. In some sense, it is like a simple cluster manager.
"""
categories = ["science"]
[[bin]]
name = "j"
path = "src/bin/client/main.rs"
[[bin]]
name = "expjobserver"
path = "src/bin/server/main.rs"
[dependencies]
log = "0.4.7"
clap = "2.33.0"
libc = "0.2.60"
prettytable-rs = "0.10.0"
console = "0.12.0"
itertools = "0.8.0"
csv = "1.1.1"
failure = "0.1.8"
log4rs = { version = "1.0", features = ["console_appender", "rolling_file_appender", "compound_policy"] }
chrono = "0.4.9"
prost = "0.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
fs_extra = "1.2.0"
glob = "0.3.0"
rayon = "1.5.0"
reqwest = { version = "0.11.12", features = ["blocking", "json"] }
[build-dependencies]
prost-build = "0.10"
[profile.release]
opt-level = 2
debug = true