Skip to content

Commit 77053c0

Browse files
Add josh cli tool
Change: add-cli
1 parent 68709d4 commit 77053c0

25 files changed

+2853
-188
lines changed

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
!hyper_cgi
66
!hyper-reverse-proxy
77
!josh-core
8+
!josh-cli
89
!josh-filter
910
!josh-proxy
1011
!josh-rpc

.github/dependabot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ updates:
55
- "/"
66
- "hyper_cgi"
77
- "josh-core"
8+
- "josh-cli"
89
- "josh-filter"
910
- "josh-graphql"
1011
- "josh-proxy"

Cargo.lock

Lines changed: 17 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ members = [
44
"hyper_cgi",
55
"hyper-reverse-proxy",
66
"josh-core",
7+
"josh-cli",
78
"josh-filter",
89
"josh-graphql",
910
"josh-proxy",
@@ -22,6 +23,7 @@ codegen-units = 1
2223
base64 = "0.22.1"
2324
defer = "0.2.1"
2425
env_logger = "0.11.5"
26+
log = "0.4.28"
2527
futures = "0.3.31"
2628
gix = { version = "0.72.1", default-features = false }
2729
hyper-reverse-proxy = { path = "hyper-reverse-proxy", version = "0.0.1" }

josh-cli/Cargo.toml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[package]
2+
authors = ["Christian Schilling <[email protected]>"]
3+
description = "Josh CLI"
4+
edition = "2024"
5+
keywords = ["git", "monorepo", "workflow", "scm"]
6+
license-file = "LICENSE"
7+
name = "josh-cli"
8+
readme = "../README.md"
9+
repository = "https://github.com/josh-project/josh"
10+
version = "22.4.15"
11+
12+
[dependencies]
13+
josh = { path = "../josh-core" }
14+
josh-graphql = { path = "../josh-graphql" }
15+
josh-templates = { path = "../josh-templates" }
16+
env_logger = { workspace = true }
17+
log = { workspace = true }
18+
serde_json = { workspace = true }
19+
defer = { workspace = true }
20+
clap = { workspace = true }
21+
rs_tracing = { workspace = true }
22+
juniper = { workspace = true }
23+
git2 = { workspace = true }

0 commit comments

Comments
 (0)