-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (31 loc) · 1.01 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
[package]
name = "orbiter"
version = "0.9.0"
authors = ["Chris Chou <[email protected]>"]
edition = "2018"
license = "MIT"
description = "A cross-shell plugin and package manager"
homepage = "https://github.com/orbiter-rs/orbiter"
repository = "https://github.com/orbiter-rs/orbiter"
readme = "README.md"
keywords = ["shell", "console", "zsh", "bash", "fish"]
categories = ["command-line-utilities"]
exclude = [".gitignore", "*.yml", "tests/**"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = "0.8"
# error handling
eyre = "0.6"
serde = { version = "1.0.195", features = ["derive"] }
serde_yaml = "0.9.30"
regex = "1.4"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls","blocking", "json"] }
dirs = "3.0"
glob = "0.3"
infer = "0.5"
log = "0.4"
env_logger = "0.9"
tokio = "1.24.1"
clap = { version = "4.2.1", features = ["derive"] }
time = {version = "0.3.31", features = ["local-offset", "formatting"]}
[dev-dependencies]