gitui/asyncgit/Cargo.toml

38 lines
1.1 KiB
TOML
Raw Normal View History

2020-03-22 23:08:48 +03:00
[package]
name = "asyncgit"
2021-12-09 01:24:01 +03:00
version = "0.19.0"
2020-03-22 23:08:48 +03:00
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
edition = "2018"
2020-03-24 23:20:06 +03:00
description = "allow using git2 in a asynchronous context"
homepage = "https://github.com/extrawurst/gitui"
repository = "https://github.com/extrawurst/gitui"
2020-03-24 23:20:06 +03:00
readme = "README.md"
2020-03-24 23:22:56 +03:00
license = "MIT"
2021-11-28 15:38:44 +03:00
categories = ["concurrency", "asynchronous"]
2020-05-22 13:24:13 +03:00
keywords = ["git"]
2020-03-22 23:08:48 +03:00
[dependencies]
2021-11-28 15:38:44 +03:00
crossbeam-channel = "0.5"
easy-cast = "0.4"
git2 = "0.13"
2021-11-28 15:38:44 +03:00
log = "0.4"
2021-08-15 15:24:20 +03:00
# git2 = { path = "../../extern/git2-rs", features = ["vendored-openssl"]}
# git2 = { git="https://github.com/extrawurst/git2-rs.git", rev="fc13dcc", features = ["vendored-openssl"]}
# pinning to vendored openssl, using the git2 feature this gets lost with new resolver
2021-11-28 15:38:44 +03:00
openssl-sys = { version = '0.9', features = ["vendored"] }
rayon-core = "1.9"
2021-11-28 15:38:44 +03:00
scopetime = { path = "../scopetime", version = "0.1" }
thiserror = "1.0"
unicode-truncate = "0.2.0"
2021-11-28 15:38:44 +03:00
url = "2.2"
[dev-dependencies]
2020-10-25 12:50:20 +03:00
invalidstring = { path = "../invalidstring", version = "0.1" }
2021-10-13 16:32:17 +03:00
pretty_assertions = "1.0"
2021-11-28 16:41:17 +03:00
serial_test = "0.5"
2021-11-28 15:38:44 +03:00
tempfile = "3.2"
2021-10-13 16:32:17 +03:00
[features]
default = ["trace-libgit"]
2021-11-28 15:38:44 +03:00
trace-libgit = []