File tree Expand file tree Collapse file tree 4 files changed +431
-1
lines changed Expand file tree Collapse file tree 4 files changed +431
-1
lines changed Original file line number Diff line number Diff line change 86
86
with :
87
87
persist-credentials : false
88
88
- 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
90
90
- name : Deploy 🚀
91
91
uses : JamesIves/github-pages-deploy-action@v4
92
92
with :
Original file line number Diff line number Diff line change @@ -3,4 +3,5 @@ members = [
3
3
" algo/*" ,
4
4
" tool/oj_test" ,
5
5
" tool/oj_test_examples/*" ,
6
+ " tool/bundle" ,
6
7
]
Original file line number Diff line number Diff line change
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"
You can’t perform that action at this time.
0 commit comments