Skip to content

Commit ffd2f6c

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

24 files changed

+2323
-187
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: 16 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: 1 addition & 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",

josh-cli/Cargo.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+
serde_json = { workspace = true }
18+
defer = { workspace = true }
19+
clap = { workspace = true }
20+
rs_tracing = { workspace = true }
21+
juniper = { workspace = true }
22+
git2 = { workspace = true }

0 commit comments

Comments
 (0)