Skip to content

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
decathorpe committed Feb 19, 2022
1 parent d0e332d commit 0c306cb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased 0.3.0
## Release 0.3.0

Added:

Expand Down
8 changes: 4 additions & 4 deletions dxr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "dxr"
description = "Declarative XML-RPC"
license = "MIT OR Apache-2.0"

version = "0.2.1"
version = "0.3.0"
edition = "2021"
rust-version = "1.56.0"

Expand Down Expand Up @@ -59,7 +59,7 @@ serde = { version = "1.0.104", features = ["derive"] }
thiserror = "1.0.30"

# derive feature
dxr_derive = { path = "../dxr_derive", version = "0.2.1", optional = true }
dxr_derive = { path = "../dxr_derive", version = "0.3.0", optional = true }

# client feature
reqwest = { version = "0.11", features = ["cookies"] , optional = true }
Expand Down Expand Up @@ -97,9 +97,9 @@ default = ["client", "server", "derive"]
client = ["reqwest", "http", "url"]

# basic XML-RPC server suport
server = ["async-trait", "http"]
server = ["http"]
# server implementation based on axum and tokio
axum-server = ["server", "axum", "tokio/time"]
axum-server = ["server", "async-trait", "axum", "tokio/time"]

# derive macros for ToDXR and FromDXR traits
derive = ["dxr_derive"]
Expand Down
2 changes: 1 addition & 1 deletion dxr_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "dxr_derive"
description = "Implementation details of DXR (derive macros)"
license = "MIT OR Apache-2.0"

version = "0.2.1"
version = "0.3.0"
edition = "2021"
rust-version = "1.56.0"

Expand Down

0 comments on commit 0c306cb

Please sign in to comment.