Skip to content

Commit

Permalink
chore: nacos-macro and changelog. (#73)
Browse files Browse the repository at this point in the history
* chore: nacos-macros and changelog.

* chore: nacos-macro.
  • Loading branch information
CherishCai authored Nov 26, 2022
1 parent 2a288c4 commit 88c1750
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 8 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# 变更日志 | Change log

### 0.2.0

- Config/Naming 功能均可用
- 登陆鉴权 username/password
- 配置解密插件
- 底层 grpc 链接健康检测,自动重连

---

- The module of Config and naming are available
- Support Auth Plugin and with props username/password
- Config decryption Plugin
- Core grpc health detection, automatic reconnection

### 0.1.1

- Config 模块基本可用
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ naming = []
auth-by-http = ["reqwest"]

[dependencies]
nacos_macro = { path = "nacos-macro" }
nacos-macro = { version = "0.1.0", path = "nacos-macro" }
thiserror = "1.0"
tokio = { version = "1.21", features = ["full"] }
#tokio-stream = { version = "0.1", features = ["net"] }
Expand Down
19 changes: 12 additions & 7 deletions nacos-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
[package]
name = "nacos_macro"
name = "nacos-macro"
version = "0.1.0"
edition = "2021"
authors = ["nacos-group", "CheirshCai <[email protected]>", "onewe <[email protected]>"]

license = "Apache-2.0"
documentation = "https://docs.rs/nacos-sdk/latest"
repository = "https://github.com/nacos-group/nacos-sdk-rust"
homepage = "https://nacos.io"
description = """
Nacos's proc macros.
"""

[lib]
proc-macro = true
name = "nacos_macro"

[dependencies]
proc-macro2 = "1.0.29"
quote = "1.0.10"
syn = { version = "1.0.80", features = ["extra-traits","parsing"] }
darling = "0.14.0"
proc-macro2 = "1.0.47"
quote = "1.0.21"
syn = { version = "1.0.103", features = ["extra-traits", "parsing"] }
darling = "0.14.2"

0 comments on commit 88c1750

Please sign in to comment.