-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 882 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (31 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "davgit"
description = "Serves a remote Git repository as WebDAV server"
authors = ["e792a8 <1571224208@qq.com>"]
version = "0.1.0"
edition = "2024"
license = "MIT"
[dependencies]
clap = { version = "4", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = "1"
bytes = "1"
hyper = { version = "1", features = ["server", "http1"] }
hyper-util = { version = "0.1", features = ["full"] }
http-body-util = "0.1"
# gix object model crates
gix-object = "0.62"
gix-hash = { version = "0.25", features = ["sha1"] }
gix-actor = "0.41"
smallvec = "1"
# git protocol support (pkt-line, packfile)
sha1 = "0.10"
flate2 = "1"
hex = "0.4"
russh = "0.61"
[features]
litmus-tests = []
[dev-dependencies]
# Only needed for litmus integration tests (used via env var)