forked from pkgw/slurm-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 890 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (28 loc) · 890 Bytes
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
# Copyright 2017-2018 Peter Williams <peter@newton.cx> and collaborators
# Licensed under the MIT licene.
[package]
name = "slurmplus"
version = "0.1.3"
authors = ["Peter Williams <peter@newton.cx>"]
description = "A command-line tool for nice interaction with the Slurm workload manager."
homepage = "https://github.com/pkgw/slurm-rs"
documentation = "https://docs.rs/crate/slurmplus"
repository = "https://github.com/pkgw/slurm-rs"
readme = "README.md"
keywords = ["slurm"]
categories = ["concurrency", "science"]
license = "MIT"
[workspace]
[dependencies]
chrono = "0.4"
failure = "0.1"
failure_derive = "0.1"
itertools = "0.14"
slurm = { path = "slurm", version = "0.1.3" }
structopt = "0.3"
termcolor = "1.4"
users = "0.11"
[package.metadata.docs.rs]
# Hack to get us building on docs.rs:
rustc-args = ["--cfg", "slurmrs_on_docs_rs"]
rustdoc-args = ["--cfg", "slurmrs_on_docs_rs"]