2020-03-22 23:08:48 +03:00
|
|
|
[package]
|
|
|
|
name = "asyncgit"
|
2024-04-14 21:31:05 +03:00
|
|
|
version = "0.26.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]
|
2024-02-12 13:53:22 +03:00
|
|
|
bitflags = "2"
|
2021-11-28 15:38:44 +03:00
|
|
|
crossbeam-channel = "0.5"
|
2024-04-10 12:53:23 +03:00
|
|
|
dirs = "5.0"
|
2022-08-22 05:10:53 +03:00
|
|
|
easy-cast = "0.5"
|
2023-08-18 18:19:18 +03:00
|
|
|
fuzzy-matcher = "0.3"
|
2024-02-12 13:53:22 +03:00
|
|
|
git2 = "0.18"
|
2023-12-08 16:33:22 +03:00
|
|
|
git2-hooks = { path = "../git2-hooks", version = "0.3" }
|
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 }
|
2024-03-25 05:04:04 +03:00
|
|
|
rayon = "1.10"
|
2024-01-18 05:29:47 +03:00
|
|
|
rayon-core = "1.12"
|
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"] }
|
2024-04-15 05:40:05 +03:00
|
|
|
ssh-key = { version = "0.6.6", features = ["crypto", "encryption"] }
|
2020-05-16 20:08:44 +03:00
|
|
|
thiserror = "1.0"
|
2024-04-29 05:06:12 +03:00
|
|
|
unicode-truncate = "1.0"
|
2023-11-23 05:26:54 +03:00
|
|
|
url = "2.5"
|
2020-05-16 20:08:44 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-12 13:53:22 +03:00
|
|
|
env_logger = "0.11"
|
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"
|
2024-04-29 05:06:22 +03:00
|
|
|
serial_test = "3.1"
|
2024-02-12 13:53:22 +03:00
|
|
|
tempfile = "3"
|
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"]
|