45 lines
1.1 KiB
TOML
45 lines
1.1 KiB
TOML
[package]
|
|
name = "gitnow"
|
|
description = "Git Now is a utility for easily navigating git projects from common upstream providers. Search, Download, and Enter projects as quickly as you can type."
|
|
edition = "2021"
|
|
readme = "../../README.md"
|
|
repository = "https://github.com/kjuulh/gitnow"
|
|
homepage = "https://gitnow-client.prod.kjuulh.app"
|
|
license = "MIT"
|
|
|
|
version.workspace = true
|
|
publish = true
|
|
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
clap.workspace = true
|
|
dotenv.workspace = true
|
|
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
uuid = { version = "1.7.0", features = ["v4"] }
|
|
async-trait = "0.1.82"
|
|
toml = "0.8.19"
|
|
|
|
gitea-client = { version = "1.22.1" }
|
|
url = "2.5.2"
|
|
octocrab = "0.42.0"
|
|
dirs = "5.0.1"
|
|
prost = "0.13.2"
|
|
prost-types = "0.13.2"
|
|
bytes = "1.7.1"
|
|
nucleo-matcher = "0.3.1"
|
|
ratatui = { version = "0.29.0", features = ["termwiz"] }
|
|
crossterm = { version = "0.28.0", features = ["event-stream"] }
|
|
futures = "0.3.30"
|
|
termwiz = "0.22.0"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1.4.0"
|
|
|
|
[features]
|
|
example = []
|