Skip to content

Commit ee28e11

Browse files
authored
Merge pull request #176 from ia7ck/bundle-rs
bundle
2 parents d3c24df + b585802 commit ee28e11

File tree

4 files changed

+431
-1
lines changed

4 files changed

+431
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
with:
8787
persist-credentials: false
8888
- name: Doc
89-
run: cargo +nightly doc --no-deps --lib --workspace --exclude=oj_test --exclude=simple_example --exclude=special_judge_example
89+
run: cargo +nightly doc --no-deps --lib --workspace --exclude=oj_test --exclude=simple_example --exclude=special_judge_example --exclude=bundle
9090
- name: Deploy 🚀
9191
uses: JamesIves/github-pages-deploy-action@v4
9292
with:

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ members = [
33
"algo/*",
44
"tool/oj_test",
55
"tool/oj_test_examples/*",
6+
"tool/bundle",
67
]

tool/bundle/Cargo.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[package]
2+
name = "bundle"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
[[bin]]
7+
name = "bundle-rs"
8+
path = "src/main.rs"
9+
10+
[dependencies]
11+
clap = { version = "3.2", features = ["derive"] }
12+
toml = "0.5"
13+
serde = { version = "1.0", features = ["derive"] }
14+
anyhow = "1.0"

0 commit comments

Comments
 (0)