File tree 9 files changed +45
-0
lines changed
9 files changed +45
-0
lines changed Original file line number Diff line number Diff line change @@ -23,21 +23,25 @@ jobs:
23
23
override : true
24
24
25
25
- name : Publish capybara-util
26
+ if : always()
26
27
run : cargo publish --token ${CRATES_TOKEN} -p capybara-util
27
28
env :
28
29
CRATES_TOKEN : ${{ secrets.CRATES_TOKEN }}
29
30
30
31
- name : Publish capybara-etc
32
+ if : always()
31
33
run : cargo publish --token ${CRATES_TOKEN} -p capybara-etc
32
34
env :
33
35
CRATES_TOKEN : ${{ secrets.CRATES_TOKEN }}
34
36
35
37
- name : Publish capybara-core
38
+ if : always()
36
39
run : cargo publish --token ${CRATES_TOKEN} -p capybara-core
37
40
env :
38
41
CRATES_TOKEN : ${{ secrets.CRATES_TOKEN }}
39
42
40
43
- name : Publish capybara
44
+ if : always()
41
45
run : cargo publish --token ${CRATES_TOKEN} -p capybara
42
46
env :
43
47
CRATES_TOKEN : ${{ secrets.CRATES_TOKEN }}
Original file line number Diff line number Diff line change 2
2
name = " capybara-core"
3
3
version = " 0.0.1-alpha.1"
4
4
edition = " 2021"
5
+ license = " MIT"
6
+ readme = " README.md"
7
+ repository = " https://github.com/jjeffcaii/capybara"
8
+ homepage = " https://github.com/jjeffcaii/capybara"
9
+ description = " A reverse proxy in Rust, which is inspired from Nginx/OpenResty/Envoy."
10
+ include = [
11
+ " **/*.rs" ,
12
+ " **/*.html" ,
13
+ " Cargo.toml" ,
14
+ ]
5
15
6
16
[dev-dependencies ]
7
17
pretty_env_logger = " 0.5.0"
Original file line number Diff line number Diff line change
1
+ # Capybara Core
Original file line number Diff line number Diff line change 2
2
name = " capybara-etc"
3
3
version = " 0.0.1-alpha.1"
4
4
edition = " 2021"
5
+ license = " MIT"
6
+ readme = " README.md"
7
+ repository = " https://github.com/jjeffcaii/capybara"
8
+ homepage = " https://github.com/jjeffcaii/capybara"
9
+ description = " A reverse proxy in Rust, which is inspired from Nginx/OpenResty/Envoy."
10
+ include = [
11
+ " **/*.rs" ,
12
+ " Cargo.toml" ,
13
+ ]
5
14
6
15
[dev-dependencies ]
7
16
pretty_env_logger = " 0.5.0"
Original file line number Diff line number Diff line change
1
+ # Capybara Etc
Original file line number Diff line number Diff line change @@ -3,6 +3,15 @@ name = "capybara-util"
3
3
version = " 0.0.1-alpha.1"
4
4
edition = " 2021"
5
5
build = " build.rs"
6
+ license = " MIT"
7
+ readme = " README.md"
8
+ repository = " https://github.com/jjeffcaii/capybara"
9
+ homepage = " https://github.com/jjeffcaii/capybara"
10
+ description = " A reverse proxy in Rust, which is inspired from Nginx/OpenResty/Envoy."
11
+ include = [
12
+ " **/*.rs" ,
13
+ " Cargo.toml" ,
14
+ ]
6
15
7
16
[build-dependencies ]
8
17
string_cache_codegen = " 0.5"
Original file line number Diff line number Diff line change
1
+ # Capybara Util
Original file line number Diff line number Diff line change 2
2
name = " capybara"
3
3
version = " 0.0.1-alpha.1"
4
4
edition = " 2021"
5
+ license = " MIT"
6
+ readme = " README.md"
7
+ repository = " https://github.com/jjeffcaii/capybara"
8
+ homepage = " https://github.com/jjeffcaii/capybara"
9
+ description = " A reverse proxy in Rust, which is inspired from Nginx/OpenResty/Envoy."
10
+ include = [
11
+ " **/*.rs" ,
12
+ " Cargo.toml" ,
13
+ ]
5
14
6
15
[dev-dependencies ]
7
16
pretty_env_logger = " 0.5.0"
Original file line number Diff line number Diff line change
1
+ ../README.md
You can’t perform that action at this time.
0 commit comments