Move async example to examples/apps/async as full project. Simplify a little by removing the need for the github api token. Co-authored-by: Orhun Parmaksız <orhunparmaksiz@gmail.com>
23 lines
584 B
TOML
23 lines
584 B
TOML
[package]
|
|
name = "async-github"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
documentation.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
readme.workspace = true
|
|
license.workspace = true
|
|
exclude.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
color-eyre = "0.6.3"
|
|
crossterm = { workspace = true, features = ["event-stream"] }
|
|
octocrab = "0.42.0"
|
|
ratatui.workspace = true
|
|
tokio = { version = "1.41.1", features = ["rt-multi-thread", "macros"] }
|
|
tokio-stream = "0.1.16"
|