2020-03-22 23:08:48 +03:00
|
|
|
[package]
|
|
|
|
name = "asyncgit"
|
2023-06-19 16:58:19 +03:00
|
|
|
version = "0.23.0"
|
2022-02-22 01:33:03 +03:00
|
|
|
authors = ["extrawurst <mail@rusticorn.com>"]
|
2022-08-17 17:30:54 +03:00
|
|
|
edition = "2021"
|
2020-03-24 23:20:06 +03:00
|
|
|
description = "allow using git2 in a asynchronous context"
|
2020-04-28 12:15:05 +03:00
|
|
|
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]
|
2023-08-18 18:19:18 +03:00
|
|
|
bitflags = "1"
|
2021-11-28 15:38:44 +03:00
|
|
|
crossbeam-channel = "0.5"
|
2022-08-22 05:10:53 +03:00
|
|
|
easy-cast = "0.5"
|
2023-08-18 18:19:18 +03:00
|
|
|
fuzzy-matcher = "0.3"
|
2023-04-03 13:17:23 +03:00
|
|
|
git2 = "0.17"
|
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"]}
|
2021-06-07 15:58:49 +03:00
|
|
|
# pinning to vendored openssl, using the git2 feature this gets lost with new resolver
|
2022-09-18 16:02:01 +03:00
|
|
|
openssl-sys = { version = '0.9', features = ["vendored"], optional = true }
|
2023-03-06 05:58:46 +03:00
|
|
|
rayon-core = "1.11"
|
2021-11-28 15:38:44 +03:00
|
|
|
scopetime = { path = "../scopetime", version = "0.1" }
|
2022-11-19 19:48:56 +03:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-08-27 16:14:10 +03:00
|
|
|
shellexpand = "3.1"
|
2020-05-16 20:08:44 +03:00
|
|
|
thiserror = "1.0"
|
2021-03-25 11:43:30 +03:00
|
|
|
unicode-truncate = "0.2.0"
|
2023-06-08 05:58:12 +03:00
|
|
|
url = "2.4"
|
2020-05-16 20:08:44 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-12-10 13:32:43 +03:00
|
|
|
env_logger = "0.10"
|
2020-10-25 12:50:20 +03:00
|
|
|
invalidstring = { path = "../invalidstring", version = "0.1" }
|
2023-07-07 05:12:16 +03:00
|
|
|
pretty_assertions = "1.4"
|
2023-01-18 05:01:55 +03:00
|
|
|
serial_test = "1.0"
|
2023-02-27 06:07:53 +03:00
|
|
|
tempfile = "3.4"
|
2021-10-13 16:32:17 +03:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["trace-libgit"]
|
2021-11-28 15:38:44 +03:00
|
|
|
trace-libgit = []
|
2022-09-18 16:02:01 +03:00
|
|
|
vendor-openssl = ["openssl-sys"]
|