Skip to content

Commit 3a3f23a

Browse files
committed
Move to crane
1 parent 10e4f73 commit 3a3f23a

File tree

12 files changed

+310
-300
lines changed

12 files changed

+310
-300
lines changed

Cargo.lock

+60-144
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+18-16
Original file line numberDiff line numberDiff line change
@@ -3,56 +3,58 @@ name = "rgit"
33
description = "A gitweb/cgit-like interface"
44
version = "0.1.3"
55
edition = "2021"
6-
authors = [ "Jordan Doyle <jordan@doyle.la>" ]
6+
authors = ["Jordan Doyle <jordan@doyle.la>"]
77
license = "WTFPL"
88

99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
askama = "0.12.0"
1312
anyhow = "1.0"
13+
askama = "0.12.0"
1414
axum = { version = "0.7", features = ["macros"] }
1515
axum-macros = "0.4.1"
16-
bat = { version = "0.24.0", default-features = false, features = ["build-assets"] }
17-
bytes = "1.5"
16+
bat = { version = "0.24.0", default-features = false, features = [
17+
"build-assets",
18+
] }
1819
bincode = "1.3"
19-
console-subscriber = { version = "0.2", features = ["parking_lot"] }
20-
comrak = "0.28.0"
20+
bytes = "1.5"
2121
clap = { version = "4.4.10", features = ["cargo", "derive"] }
22+
comrak = "0.28.0"
23+
console-subscriber = { version = "0.4", features = ["parking_lot"] }
24+
flate2 = "1.0"
2225
futures = "0.3"
2326
gix = "0.66"
2427
hex = "0.4"
28+
httparse = "1.7"
2529
humantime = "2.1"
2630
itertools = "0.13.0"
27-
rust-ini = "0.21.1"
28-
nom = "7.1"
2931
md5 = "0.7"
3032
moka = { version = "0.12.0", features = ["future"] }
33+
nom = "7.1"
3134
once_cell = "1.18"
32-
path-clean = "1.0.1"
3335
parking_lot = "0.12"
36+
path-clean = "1.0.1"
37+
rand = "0.8.5"
38+
rocksdb = { version = "0.22", default-features = false, features = ["snappy"] }
39+
rust-ini = "0.21.1"
3440
serde = { version = "1.0", features = ["derive", "rc"] }
3541
sha2 = "0.10"
3642
syntect = "5"
37-
rocksdb = { version = "0.22", default-features = false, features = ["snappy"] }
3843
tar = "0.4"
39-
flate2 = "1.0"
4044
time = { version = "0.3", features = ["serde"] }
4145
timeago = { version = "0.4.2", default-features = false }
4246
tokio = { version = "1.19", features = ["full", "tracing"] }
43-
tokio-util = { version = "0.7.10", features = ["io"] }
4447
tokio-stream = "0.1"
48+
tokio-util = { version = "0.7.10", features = ["io"] }
4549
tower = "0.5"
46-
tower-service = "0.3"
47-
tower-layer = "0.3"
4850
tower-http = { version = "0.6", features = ["cors", "timeout"] }
51+
tower-layer = "0.3"
52+
tower-service = "0.3"
4953
tracing = "0.1"
5054
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
5155
unix_mode = "0.1"
5256
uuid = { version = "1.7", features = ["v4"] }
53-
httparse = "1.7"
5457
yoke = { version = "0.7.1", features = ["derive"] }
55-
rand = "0.8.5"
5658

5759
[build-dependencies]
5860
anyhow = "1.0"

flake.lock

+53-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)