This is an automated email from the ASF dual-hosted git repository.
liujun pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/dubbo-rust.git
from 961471b repo configuration
add 7b5687b dubbo-rust begin with first commit
add e33e22c modify package info
add 336a9a0 Doc: fix
add b630a29 Mod: empty examples src
new 28eab63 Init basic project structure (#3)
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:
.gitignore | 2 +
Cargo.toml | 9 ++
LICENSE | 191 +++++++++++++++++++++++++++++++++++++++++++
README_CN.md | 0
common/Cargo.toml | 8 ++
common/src/lib.rs | 8 ++
config/Cargo.toml | 8 ++
config/src/lib.rs | 8 ++
contributing.md | 31 +++++++
examples/LICENSE | 191 +++++++++++++++++++++++++++++++++++++++++++
examples/README.md | 0
examples/example-tutorial.md | 0
metadata/Cargo.toml | 8 ++
metadata/src/lib.rs | 8 ++
protocol/Cargo.toml | 8 ++
protocol/src/lib.rs | 8 ++
registry/Cargo.toml | 8 ++
registry/src/lib.rs | 8 ++
xds/Cargo.toml | 8 ++
xds/src/client/client.rs | 0
xds/src/client/mod.rs | 0
xds/src/lib.rs | 8 ++
xds/src/server/mod.rs | 0
xds/src/server/server.rs | 0
24 files changed, 520 insertions(+)
create mode 100644 .gitignore
create mode 100644 Cargo.toml
create mode 100644 LICENSE
create mode 100644 README_CN.md
create mode 100644 common/Cargo.toml
create mode 100644 common/src/lib.rs
create mode 100644 config/Cargo.toml
create mode 100644 config/src/lib.rs
create mode 100644 contributing.md
create mode 100644 examples/LICENSE
create mode 100644 examples/README.md
create mode 100644 examples/example-tutorial.md
create mode 100644 metadata/Cargo.toml
create mode 100644 metadata/src/lib.rs
create mode 100644 protocol/Cargo.toml
create mode 100644 protocol/src/lib.rs
create mode 100644 registry/Cargo.toml
create mode 100644 registry/src/lib.rs
create mode 100644 xds/Cargo.toml
create mode 100644 xds/src/client/client.rs
create mode 100644 xds/src/client/mod.rs
create mode 100644 xds/src/lib.rs
create mode 100644 xds/src/server/mod.rs
create mode 100644 xds/src/server/server.rs