2023-05-03 07:58:06 +00:00
|
|
|
[package]
|
|
|
|
name = "gateway"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2023-05-07 11:22:55 +00:00
|
|
|
[dev-dependencies]
|
2023-05-07 16:07:31 +00:00
|
|
|
tempdir = "0.3.7"
|
2023-05-07 11:22:55 +00:00
|
|
|
|
2023-05-03 07:58:06 +00:00
|
|
|
[dependencies]
|
2023-05-03 10:42:00 +00:00
|
|
|
sha2 = "0.10.6"
|
|
|
|
hex = "0.4.3"
|
2023-05-04 12:56:31 +00:00
|
|
|
gix = { version = "0.44.1", features = [
|
|
|
|
"blocking-network-client",
|
|
|
|
"blocking-http-transport-reqwest-rust-tls",
|
|
|
|
]}
|
2023-05-06 13:38:43 +00:00
|
|
|
serde = { version = "1.0.162", features = [ "derive" ]}
|
|
|
|
serde_json = "1.0.96"
|
2023-05-07 15:06:51 +00:00
|
|
|
trust-dns-client = "0.22.0"
|
2023-05-07 15:17:04 +00:00
|
|
|
mockall = "0.11.4"
|
2023-05-09 11:40:49 +00:00
|
|
|
thiserror = "1.0.40"
|