-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ad4a447
commit 5de6f94
Showing
8 changed files
with
44 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,19 +3,18 @@ name = "dxr_client" | |
description = "Declarative XML-RPC (client implementation)" | ||
license = "MIT OR Apache-2.0" | ||
|
||
version = "0.4.0-dev" | ||
version = "0.4.0" | ||
edition = "2021" | ||
rust-version = "1.60.0" | ||
|
||
authors = ["Fabio Valentini <[email protected]>"] | ||
categories = ["network-programming", "web-programming::http-client", "encoding"] | ||
keywords = ["XML-RPC", "client"] | ||
repository = "https://github.com/ironthree/dxr" | ||
exclude = ["/wip/"] | ||
|
||
[dependencies] | ||
anyhow = "1.0.53" | ||
dxr_shared = { path = "../dxr_shared", version = "0.4.0-dev" } | ||
dxr_shared = { path = "../dxr_shared", version = "0.4.0" } | ||
http = "0.2.6" | ||
log = "0.4.13" | ||
quick-xml = { version = "0.23" , features = ["serialize"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,19 +3,18 @@ name = "dxr_server" | |
description = "Declarative XML-RPC (server implementation)" | ||
license = "MIT OR Apache-2.0" | ||
|
||
version = "0.4.0-dev" | ||
version = "0.4.0" | ||
edition = "2021" | ||
rust-version = "1.60.0" | ||
|
||
authors = ["Fabio Valentini <[email protected]>"] | ||
categories = ["network-programming", "web-programming::http-client", "encoding"] | ||
keywords = ["XML-RPC", "server"] | ||
repository = "https://github.com/ironthree/dxr" | ||
exclude = ["/wip/"] | ||
|
||
[dependencies] | ||
async-trait = "0.1.53" | ||
dxr_shared = { path = "../dxr_shared", version = "0.4.0-dev" } | ||
dxr_shared = { path = "../dxr_shared", version = "0.4.0" } | ||
http = "0.2.6" | ||
quick-xml = { version = "0.23" , features = ["serialize"] } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,21 +3,20 @@ name = "dxr_server_axum" | |
description = "Declarative XML-RPC (axum server implementation)" | ||
license = "MIT OR Apache-2.0" | ||
|
||
version = "0.4.0-dev" | ||
version = "0.4.0" | ||
edition = "2021" | ||
rust-version = "1.60.0" | ||
|
||
authors = ["Fabio Valentini <[email protected]>"] | ||
categories = ["network-programming", "web-programming::http-client", "encoding"] | ||
keywords = ["XML-RPC", "server"] | ||
repository = "https://github.com/ironthree/dxr" | ||
exclude = ["/wip/"] | ||
|
||
[dependencies] | ||
anyhow = "1.0.53" | ||
axum = "0.5.4" | ||
dxr_shared = { path = "../dxr_shared", version = "0.4.0-dev" } | ||
dxr_server = { path = "../dxr_server", version = "0.4.0-dev" } | ||
dxr_shared = { path = "../dxr_shared", version = "0.4.0" } | ||
dxr_server = { path = "../dxr_server", version = "0.4.0" } | ||
tokio = { version = "1.14", features = ["sync"] } | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,15 +3,14 @@ name = "dxr_shared" | |
description = "Declarative XML-RPC (implementation details)" | ||
license = "MIT OR Apache-2.0" | ||
|
||
version = "0.4.0-dev" | ||
version = "0.4.0" | ||
edition = "2021" | ||
rust-version = "1.60.0" | ||
|
||
authors = ["Fabio Valentini <[email protected]>"] | ||
categories = ["network-programming", "encoding"] | ||
keywords = ["XML-RPC"] | ||
repository = "https://github.com/ironthree/dxr" | ||
exclude = ["/wip/"] | ||
|
||
[dependencies] | ||
base64 = "0.13" | ||
|