-
Notifications
You must be signed in to change notification settings - Fork 23
/
Cargo.toml
38 lines (35 loc) · 922 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
31
32
33
34
35
36
37
38
[package]
name = "fw"
version = "2.19.1"
authors = ["brocode <bros@brocode.sh>"]
description = "faster workspace management"
license = "WTFPL"
categories = ["command-line-utilities"]
repository = "https://github.com/brocode/fw"
readme = "README.md"
keywords = ["workspace", "productivity", "cli", "automation", "developer-tools" ]
edition = "2021"
include = ["src/**/*", "LICENSE", "README.md"]
[dependencies]
walkdir = "2"
dirs = "5"
toml = "0.8"
serde_json = "1.0.132"
serde = {version = "1", features = ["derive"] }
git2 = "0.19"
maplit = "1.0"
rayon = "1"
regex = "1"
rand = "0.8"
crossbeam = "0"
indicatif = "0"
openssl-probe = "0.1"
reqwest = { version = "0", features = ["json", "blocking"] }
tokio = { version = "1", features = ["full"] }
openssl = { version = "0.10", features = ["vendored"] }
[dependencies.clap]
version = "4"
features = ["cargo"]
[dependencies.yansi]
version = "1"
features = ["detect-env"]