[package]
edition = "2021"
name = "github-device-flow"
version = "0.2.1"
build = false
exclude = ["/script"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Binary and library for performing the GitHub Device Flow"
readme = "README.md"
license = "MIT"
repository = "https://github.com/jakewilkins/gh-device-flow"
[lib]
name = "github_device_flow"
path = "src/lib.rs"
[[bin]]
name = "github-device-flow"
path = "src/main.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"json",
]
[dependencies.serde]
version = "1"
[dependencies.serde_derive]
version = "1"
[dependencies.serde_json]
version = "1"