2021-10-04 19:07:35 +00:00
|
|
|
[package]
|
|
|
|
name = "util"
|
|
|
|
version = "0.1.0"
|
2022-01-26 20:50:31 +00:00
|
|
|
edition = "2021"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2024-01-23 15:56:22 +00:00
|
|
|
license = "Apache-2.0"
|
2024-01-23 16:40:30 +00:00
|
|
|
|
2022-03-04 00:15:56 +00:00
|
|
|
[lib]
|
2023-02-18 01:19:23 +00:00
|
|
|
path = "src/util.rs"
|
2023-03-29 14:31:55 +00:00
|
|
|
doctest = true
|
2022-03-04 00:15:56 +00:00
|
|
|
|
2021-10-04 19:07:35 +00:00
|
|
|
[features]
|
2024-01-24 17:58:09 +00:00
|
|
|
test-support = ["tempfile", "git2"]
|
2021-10-04 19:07:35 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-04-25 00:41:55 +00:00
|
|
|
anyhow.workspace = true
|
2022-11-30 18:03:15 +00:00
|
|
|
backtrace = "0.3"
|
2024-02-07 17:06:03 +00:00
|
|
|
collections.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
dirs = "3.0"
|
2023-04-25 00:41:55 +00:00
|
|
|
futures.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
git2 = { workspace = true, optional = true }
|
|
|
|
globset.workspace = true
|
2023-05-23 02:28:22 +00:00
|
|
|
isahc.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
lazy_static.workspace = true
|
|
|
|
log.workspace = true
|
|
|
|
parking_lot.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
rand.workspace = true
|
2023-06-06 18:46:46 +00:00
|
|
|
rust-embed.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
smol.workspace = true
|
2023-05-11 19:01:42 +00:00
|
|
|
take-until = "0.2.0"
|
2024-01-31 02:41:29 +00:00
|
|
|
tempfile = { workspace = true, optional = true }
|
|
|
|
url.workspace = true
|
2022-09-26 14:59:51 +00:00
|
|
|
|
2024-01-30 18:07:46 +00:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
tendril = "0.4.3"
|
|
|
|
|
2022-08-03 21:20:05 +00:00
|
|
|
[dev-dependencies]
|
2023-09-19 20:13:47 +00:00
|
|
|
git2.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
tempfile.workspace = true
|