-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
30 lines (24 loc) · 1011 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
[package]
name = "mrt"
description = "A tool to interact with multiple repositories, by executing the specified commands in multiple contexts."
version = "0.0.3"
authors = ["Jonas Natten <[email protected]>"]
edition = "2018"
license-file = "LICENSE"
repository = "https://github.com/jnatten/mrt"
keywords = ["vcs", "git", "microservices", "multitasking", "repository-management"]
categories = ["cli", "repository-management"]
[dependencies]
clap = "2.33.0" # Command line argument parser
colored = "2.0.0" # Terminal colors
rayon = "1.5.0" # Parallelization
# Json libraries
serde = { version = "1.0.98", features = ["derive"]}
serde_derive = "1.0.98"
serde_json = "1.0.40"
dirs = "3.0.1" # Used to determine dir for config platform agnostic
shellexpand = "2.0.0" # Used to expand tilde as home etc...
anyhow = "1.0.34" # Simpler error handling
uuid = {version = "0.8.2", features = ["v4"] } # UUID for unique tmux session names
[dev-dependencies]
tempdir = "0.3.7" # Used for testing config functionality