Skip to content

Commit 8a2518e

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

File tree

22 files changed

+2321
-187
lines changed

22 files changed

+2321
-187
lines changed

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)