-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathCargo.toml
51 lines (50 loc) · 1.59 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
[package]
authors = ["Christian Schilling <christian.schilling@esrlabs.com>"]
description = "GIT virtualization proxy"
edition = "2021"
keywords = ["git", "monorepo", "workflow", "scm"]
license-file = "LICENSE"
name = "josh-proxy"
readme = "README.md"
repository = "https://github.com/josh-project/josh"
version = "22.4.15"
[dependencies]
base64 = { workspace = true }
clap = { workspace = true }
futures = { workspace = true }
hyper = { version = "0.14.28", features = ["stream"] }
hyper-reverse-proxy = { workspace = true }
hyper-staticfile = "0.9.5"
hyper-tls = "0.6.0"
hyper_cgi = { path = "../hyper_cgi" }
indoc = "2.0.5"
josh = {path = "../josh-core" }
josh-templates = { path = "../josh-templates" }
josh-graphql = { path = "../josh-graphql" }
lazy_static = { workspace = true }
opentelemetry = "0.23.0"
opentelemetry-jaeger = "0.22.0"
percent-encoding = "2.3.0"
regex = { workspace = true }
reqwest = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
tokio = { workspace = true }
toml = { workspace = true }
tracing = { workspace = true }
tracing-futures = "0.2.5"
tracing-opentelemetry = "0.24.0"
tracing-subscriber = { workspace = true }
unindent = "0.2.3"
url = "2.5.0"
uuid = { version = "1.8.0", features = ["v4"] }
josh-rpc = { path = "../josh-rpc" }
tokio-util = { workspace = true }
tempfile = { workspace = true }
gix = { workspace = true }
juniper = { workspace = true }
git2 = { workspace = true }
opentelemetry-semantic-conventions = "0.15.0"
opentelemetry-otlp = "0.16.0"
opentelemetry_sdk = { version = "0.23.0", features = ["rt-tokio"] }