Skip to content

Commit 0cfd360

Browse files
committed
Bootstrap the josh-sync tool
1 parent 4175603 commit 0cfd360

File tree

7 files changed

+428
-2
lines changed

7 files changed

+428
-2
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
target/
2+
3+
4+
# Added by cargo
5+
6+
/target

Cargo.lock

Lines changed: 360 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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[package]
2+
name = "josh-sync"
3+
version = "0.1.0"
4+
edition = "2024"
5+
6+
[dependencies]
7+
anyhow = "1"
8+
clap = { version = "4", features = ["derive"] }
9+
toml = "0.8"
10+
serde = { version = "1", features = ["derive"] }

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
# josh-sync
2-
Utilities for synchronizing Josh subtrees to the Rust compiler repo
1+
# Josh sync utilities
2+
This repository contains a binary utility for performing [Josh](https://github.com/josh-project/josh)
3+
synchronizations (pull and push) of Josh subtrees in the [rust-lang/rust](https://github.com/rust-lang/rust) repository.

josh-sync.example.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
repo = "stdarch"
2+
upstream_sha = "abcdef"

0 commit comments

Comments
 (0)