This is an automated email from the ASF dual-hosted git repository.
xuehuilang pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/shenyu-client-rust.git
from 1cfba8f Update README_CN.md
add 3e0f6bc code polish
add 60f7af2 code polish
add 4b6b75e code polish
new f3147bd Merge pull request #3 from loongs-zhang/dev-refactor
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/ISSUE_TEMPLATE/bug-report.yml | 61 +++++++++
.../publish.yml => ISSUE_TEMPLATE/config.yml} | 33 +----
.github/ISSUE_TEMPLATE/feature-request.yml | 39 ++++++
.github/ISSUE_TEMPLATE/question.yml | 18 +++
.github/ISSUE_TEMPLATE/task.yml | 25 ++++
.github/ISSUE_TEMPLATE/volunteer.yml | 17 +++
.github/PULL_REQUEST_TEMPLATE.md | 10 ++
.github/workflows/ci.bat | 6 +-
.github/workflows/ci.sh | 6 +-
Cargo.toml | 3 +-
README.md | 103 +--------------
README_CN.md | 105 +--------------
examples/Cargo.toml | 69 ----------
examples/actix-web-example/Cargo.toml | 19 +++
examples/{ => actix-web-example}/config.yml | 0
.../src/main.rs} | 8 +-
examples/axum-example/Cargo.toml | 19 +++
examples/{ => axum-example}/config.yml | 0
.../axum_example.rs => axum-example/src/main.rs} | 28 ++--
shenyu-client-rust/Cargo.toml | 36 ++++--
{examples => shenyu-client-rust}/src/ci.rs | 3 +-
shenyu-client-rust/src/config.rs | 8 +-
shenyu-client-rust/src/core.rs | 142 +++++++++++----------
shenyu-client-rust/src/error.rs | 7 +-
shenyu-client-rust/src/lib.rs | 138 +++++++++++++-------
shenyu-client-rust/src/model.rs | 50 +++++---
26 files changed, 482 insertions(+), 471 deletions(-)
create mode 100644 .github/ISSUE_TEMPLATE/bug-report.yml
copy .github/{workflows/publish.yml => ISSUE_TEMPLATE/config.yml} (53%)
create mode 100644 .github/ISSUE_TEMPLATE/feature-request.yml
create mode 100644 .github/ISSUE_TEMPLATE/question.yml
create mode 100644 .github/ISSUE_TEMPLATE/task.yml
create mode 100644 .github/ISSUE_TEMPLATE/volunteer.yml
create mode 100644 .github/PULL_REQUEST_TEMPLATE.md
delete mode 100644 examples/Cargo.toml
create mode 100644 examples/actix-web-example/Cargo.toml
copy examples/{ => actix-web-example}/config.yml (100%)
rename examples/{src/actix_web_example.rs => actix-web-example/src/main.rs}
(90%)
create mode 100644 examples/axum-example/Cargo.toml
rename examples/{ => axum-example}/config.yml (100%)
rename examples/{src/axum_example.rs => axum-example/src/main.rs} (73%)
rename {examples => shenyu-client-rust}/src/ci.rs (93%)