-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
41 lines (37 loc) · 1.03 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
[package]
name = "mure"
version = "0.2.4"
edition = "2021"
authors = ["Yui Kitsu <[email protected]>"]
description = "A command line tool for creating and managing multiple repositories."
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/kitsuyui/mure"
documentation = "https://docs.rs/mure"
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
git2 = "0.19.0"
graphql_client = "0.14.0"
once_cell = "1.19.0"
regex = "1.10.4"
reqwest = { version = "0.12.4", features = ["blocking", "json"] }
serde = "1.0.200"
serde_derive = "1.0.200"
shellexpand = "3.1.0"
toml = "0.8.12"
openssl-probe = "0.1.5"
clap_complete = "4.5.2"
serde_json = "1.0.116"
codecov = "0.4.0"
codecov-cache = "0.2.0"
dirs = "5.0.1"
[dependencies.openssl]
version = "0.10.64"
features = ["vendored"]
[dev-dependencies]
mktemp = "0.5.1"
assay = "0.1.1"
assert_cmd = "2.0.14"
predicates = "3.1.0"