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