2021-03-27 10:42:49 +01:00
|
|
|
[package]
|
|
|
|
name = "lohr"
|
2021-04-08 01:53:22 +02:00
|
|
|
version = "0.4.0"
|
2021-03-27 10:42:49 +01:00
|
|
|
authors = ["Antoine Martin <antoine@alarsyo.net>"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "Apache-2.0 OR MIT"
|
|
|
|
description = "A Git mirroring daemon"
|
2021-03-30 01:08:55 +02:00
|
|
|
homepage = "https://github.com/alarsyo/lohr"
|
|
|
|
repository = "https://github.com/alarsyo/lohr"
|
2021-03-27 10:42:49 +01:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-03-29 02:01:53 +02:00
|
|
|
anyhow = "1.0.40"
|
2021-03-30 11:23:09 +02:00
|
|
|
hex = "0.4.3"
|
|
|
|
hmac = "0.10.1"
|
2021-03-29 02:01:53 +02:00
|
|
|
log = "0.4.14"
|
2021-03-30 18:11:36 +02:00
|
|
|
regex = "1"
|
2021-03-29 02:01:53 +02:00
|
|
|
serde = { version = "1.0.125", features = [ "derive" ] }
|
2021-03-30 11:23:09 +02:00
|
|
|
serde_json = "1.0.64"
|
2021-03-30 18:11:36 +02:00
|
|
|
serde_regex = "1.1.0"
|
2021-03-29 20:52:04 +02:00
|
|
|
serde_yaml = "0.8.17"
|
2021-03-30 11:23:09 +02:00
|
|
|
sha2 = "0.9.3"
|
2021-03-30 23:32:07 +02:00
|
|
|
|
|
|
|
[dependencies.rocket]
|
2021-03-31 13:46:03 +02:00
|
|
|
version = "0.5.0-dev"
|
2021-03-30 23:32:07 +02:00
|
|
|
# don't need private-cookies
|
|
|
|
default-features = false
|
|
|
|
|
|
|
|
[dependencies.clap]
|
|
|
|
version = "2.33.3"
|
|
|
|
# no need for suggestions or color with only one argument
|
|
|
|
default-features = false
|
2021-03-31 13:46:03 +02:00
|
|
|
|
|
|
|
[patch.crates-io]
|
2021-04-08 01:51:07 +02:00
|
|
|
rocket = { git = "https://github.com/SergioBenitez/Rocket", rev = "8d4d01106e2e10b08100805d40bfa19a7357e900" }
|