-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
124 lines (113 loc) · 3.36 KB
/
Cargo.toml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[package]
name = "gnostr-gnit"
description = "gnostr:git server"
homepage = "https://github.com/gnostr-org/gnostr-gnit/modal"
repository = "https://github.com/gnostr-org/gnostr-gnit/modal"
version = "0.0.8"
edition = "2021"
authors = ["gnostr <admin@gnostr.org>", "Jordan Doyle <jordan@doyle.la>"]
license = "WTFPL"
[workspace]
members = ["ssh", "tree-sitter-grammar-repository"]
exclude = ["examples/russh-client", "examples/russh-server"]
[[bin]]
name = "gnostr-gnit-server"
path = "ssh/src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "gnostr-gnit-russh-client-example"
path = "examples/russh-client/src/main.rs"
[[bin]]
name = "gnostr-gnit-russh-server-example"
path = "examples/russh-server/src/main.rs"
[dependencies]
anyhow = "1.0"
arc-swap = "1.7"
askama = { version = "0.12.0", default-features = false }
async-trait = "0.1.68"
axum = { version = "0.7", default-features = false, features = [
"query",
"tokio",
"http1",
] }
bytes = "1.5"
clap = { version = "4.5.20", default-features = false, features = [
"std",
"cargo",
"derive",
"help",
"usage",
] }
clean-path = "0.2.1"
colored = "2.0.0"
comrak = { version = "0.28.0", default-features = false }
const-hex = "1.12"
const_format = "0.2"
env_logger = "0.10.0"
flate2 = "1.0"
futures = "0.3"
futures-util = "0.3"
gix = { version = "0.66", default-features = false, features = [
"fast-sha1",
"tracing",
"parallel",
"blob-diff",
"revision",
] }
httparse = "1.7"
humantime = "2.1"
itertools = "0.13.0"
kanal = "0.1.0-pre8"
log = "0.4.17"
md5 = "0.7"
moka = { version = "0.12.0", features = ["future"] }
path-clean = "1.0.1"
rand = "0.8.5"
rkyv = "0.8"
rocksdb = { version = "0.22", default-features = false, features = ["snappy"] }
russh = { version = "0.37.1", features = ["openssl"] }
russh-keys = { version = "0.37.1" }
rust-ini = "0.21.1"
#[dependencies.comrak]
#version = "0.18.0"
#[dependencies.futures]
#version = "0.3.28"
sd-notify = "0.4.1"
serde = { version = "1.0", features = ["derive", "rc"] }
shellwords = "1.1.0"
simdutf8 = "0.1.5"
tar = { version = "0.4", default-features = false }
tempfile = "3.5.0"
tera = "1.18.1"
#[dependencies.serde]#version = "1.0.159"#features = ["derive"]
textwrap = "0.16.0"
time = { version = "0.3", features = ["serde", "formatting"] }
timeago = { version = "0.4.2", default-features = false }
tokio = { version = "1.19", features = ["full", "tracing"] }
tokio-stream = "0.1"
tokio-util = { version = "0.7.10", features = ["io"] }
toml = { version = "0.7", default-features = true, features = ["parse"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "timeout"] }
tower-layer = "0.3"
tower-service = "0.3"
tracing = "0.1"
tracing-subscriber = { version = "0.3", default-features = false, features = [
"env-filter",
"smallvec",
"parking_lot",
"fmt",
] }
tree-sitter-grammar-repository = { path = "./tree-sitter-grammar-repository" }
tree-sitter-highlight = "0.23"
unix_mode = "0.1"
uuid = { version = "1.7", features = ["v4"] }
v_htmlescape = { version = "0.15", features = ["bytes-buf"] }
xxhash-rust = { version = "0.8.12", features = ["const_xxh3"] }
yoke = { version = "0.7.1", features = ["derive"] }
#[dependencies.tokio]#version = "1.27.0"#features = ["full"]#[dependencies.toml]#version = "0.7.3"
[build-dependencies]
anyhow = "1.0"
rsass = "0.28.0"
[package.metadata.deb]
section = "web"