-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
25 lines (23 loc) · 877 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
[package]
name = "linear-cli"
version = "0.1.0"
edition = "2021"
authors = ["Max Muoto <[email protected]>"]
description = "A command line interface for Linear."
homepage = "https://github.com/max-muoto/linear-cli"
repository = "https://github.com/max-muoto/linear-cli"
keywords = ["linear", "cli"]
categories = ["command-line-utilities", "command-line-interface"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.0", features = ["derive"] }
clipboard = "0.5.0"
env_logger = "0.10.1"
graphql_client = "0.13.0"
inquire = "0.6.2"
log = "0.4.20"
reqwest = { version = "0.11.22", features = ["json"] }
security-framework = "2.11.0"
serde = { version = "1.0.192", features = ["derive"] }
tabled = { version = "0.14.0", features = ["color"] }
tokio = { version = "1.34.0", features = ["full"] }