-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (37 loc) · 927 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
39
40
41
42
43
44
45
[package]
authors = ["Maximilien DI DIO <[email protected]>"]
name = "octomate"
description = "Automate things using the Github API"
version = "0.1.0"
edition = "2021"
license = "MIT"
keywords = ["api", "github", "tool"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde_json = "1.0.79"
serde_yaml = "0.8.23"
hyper-tls = "0.5.0"
rpassword = "6.0.1"
rprompt = "1.0.5"
octocrab = "0.18.1"
futures = "0.3.21"
tracing = "0.1.32"
mockito = "0.31.0"
[dependencies.paris]
version = "1.5.13"
features = ['macros']
[dependencies.serde]
version = "1.0.136"
features = ['derive']
[dependencies.clap]
version = "3.1.18"
features = ['derive']
[dependencies.tracing-subscriber]
version = "0.3.11"
features = ['tracing-log', 'env-filter']
[dependencies.hyper]
version = "0.14.18"
features = ["http2", "tcp"]
[dependencies.tokio]
version = "1"
features = ["full"]