diff --git a/core/Cargo.toml b/core/Cargo.toml index d54bd2de8..3e93c9eb0 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,14 +1,14 @@ [package] +authors = ["Parity Technologies "] description = "Transport agnostic rust implementation of JSON-RPC 2.0 Specification." +documentation = "https://docs.rs/jsonrpc-core/" +edition = "2018" homepage = "https://github.com/paritytech/jsonrpc" -repository = "https://github.com/paritytech/jsonrpc" +keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"] license = "MIT" name = "jsonrpc-core" -version = "10.0.0" -authors = ["debris "] -keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"] -documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_core/index.html" -edition = "2018" +repository = "https://github.com/paritytech/jsonrpc" +version = "10.0.1" categories = [ "asynchronous", diff --git a/derive/Cargo.toml b/derive/Cargo.toml index aa3fb7228..4b394b87f 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,8 +1,12 @@ [package] -name = "jsonrpc-derive" -version = "10.0.0" authors = ["Parity Technologies "] +documentation = "https://docs.rs/jsonrpc-derive/" edition = "2018" +homepage = "https://github.com/paritytech/jsonrpc" +license = "MIT" +name = "jsonrpc-derive" +repository = "https://github.com/paritytech/jsonrpc" +version = "10.0.1" [lib] proc-macro = true diff --git a/http/Cargo.toml b/http/Cargo.toml index b3e6aa5d5..02fd131f2 100644 --- a/http/Cargo.toml +++ b/http/Cargo.toml @@ -1,14 +1,14 @@ [package] +authors = ["Parity Technologies "] description = "Rust http server using JSONRPC 2.0." +documentation = "https://docs.rs/jsonrpc-http-server/" +edition = "2018" homepage = "https://github.com/paritytech/jsonrpc" -repository = "https://github.com/paritytech/jsonrpc" +keywords = ["jsonrpc", "json-rpc", "json", "rpc", "server"] license = "MIT" name = "jsonrpc-http-server" -version = "10.0.0" -authors = ["debris "] -keywords = ["jsonrpc", "json-rpc", "json", "rpc", "server"] -documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_http_server/index.html" -edition = "2018" +repository = "https://github.com/paritytech/jsonrpc" +version = "10.0.1" [dependencies] hyper = "0.12" diff --git a/ipc/Cargo.toml b/ipc/Cargo.toml index fe28e1cf6..3f131d5e9 100644 --- a/ipc/Cargo.toml +++ b/ipc/Cargo.toml @@ -1,13 +1,13 @@ [package] -name = "jsonrpc-ipc-server" +authors = ["Parity Technologies "] description = "IPC server for JSON-RPC" -version = "10.0.0" -authors = ["Nikolay Volf "] -license = "MIT" +documentation = "https://docs.rs/jsonrpc-ipc-server/" +edition = "2018" homepage = "https://github.com/paritytech/jsonrpc" +license = "MIT" +name = "jsonrpc-ipc-server" repository = "https://github.com/paritytech/jsonrpc" -documentation = "https://paritytech.github.io/jsonrpc/json_ipc_server/index.html" -edition = "2018" +version = "10.0.1" [dependencies] log = "0.4" diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 915c7858a..37185db7e 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,13 +1,13 @@ [package] +authors = ["Parity Technologies "] description = "Helper macros for jsonrpc-core" +documentation = "https://docs.rs/jsonrpc-macros/" homepage = "https://github.com/paritytech/jsonrpc" -repository = "https://github.com/paritytech/jsonrpc" +keywords = ["jsonrpc", "json-rpc", "json", "rpc", "macros"] license = "MIT" name = "jsonrpc-macros" -version = "10.0.0" -authors = ["rphmeier "] -keywords = ["jsonrpc", "json-rpc", "json", "rpc", "macros"] -documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_macros/index.html" +repository = "https://github.com/paritytech/jsonrpc" +version = "10.0.1" [dependencies] serde = "1.0" diff --git a/pubsub/Cargo.toml b/pubsub/Cargo.toml index 4881ec492..abf731ad5 100644 --- a/pubsub/Cargo.toml +++ b/pubsub/Cargo.toml @@ -1,14 +1,14 @@ [package] +authors = ["Parity Technologies "] description = "Publish-Subscribe extension for jsonrpc." +documentation = "https://docs.rs/jsonrpc-pubsub/" +edition = "2018" homepage = "https://github.com/paritytech/jsonrpc" -repository = "https://github.com/paritytech/jsonrpc" +keywords = ["jsonrpc", "json-rpc", "json", "rpc", "macros"] license = "MIT" name = "jsonrpc-pubsub" -version = "10.0.0" -authors = ["tomusdrw "] -keywords = ["jsonrpc", "json-rpc", "json", "rpc", "macros"] -documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_pubsub/index.html" -edition = "2018" +repository = "https://github.com/paritytech/jsonrpc" +version = "10.0.1" [dependencies] log = "0.4" diff --git a/pubsub/more-examples/Cargo.toml b/pubsub/more-examples/Cargo.toml index 0cdaf2145..60955156d 100644 --- a/pubsub/more-examples/Cargo.toml +++ b/pubsub/more-examples/Cargo.toml @@ -3,7 +3,7 @@ name = "jsonrpc-pubsub-examples" description = "Examples of Publish-Subscribe extension for jsonrpc." homepage = "https://github.com/paritytech/jsonrpc" repository = "https://github.com/paritytech/jsonrpc" -version = "10.0.0" +version = "10.0.1" authors = ["tomusdrw "] license = "MIT" diff --git a/server-utils/Cargo.toml b/server-utils/Cargo.toml index 986b69c2a..c6fce05bd 100644 --- a/server-utils/Cargo.toml +++ b/server-utils/Cargo.toml @@ -1,14 +1,14 @@ [package] +authors = ["Parity Technologies "] description = "Server utils for jsonrpc-core crate." -name = "jsonrpc-server-utils" -version = "10.0.0" -authors = ["tomusdrw "] -license = "MIT" -keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"] -documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_core/index.html" +documentation = "https://docs.rs/jsonrpc-server-utils/" +edition = "2018" homepage = "https://github.com/paritytech/jsonrpc" +keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"] +license = "MIT" +name = "jsonrpc-server-utils" repository = "https://github.com/paritytech/jsonrpc" -edition = "2018" +version = "10.0.1" [dependencies] bytes = "0.4" diff --git a/stdio/Cargo.toml b/stdio/Cargo.toml index a2e1c6b22..6089f4003 100644 --- a/stdio/Cargo.toml +++ b/stdio/Cargo.toml @@ -1,13 +1,13 @@ [package] -name = "jsonrpc-stdio-server" +authors = ["Parity Technologies "] description = "STDIN/STDOUT server for JSON-RPC" -version = "10.0.0" -authors = ["cmichi "] -license = "MIT" +documentation = "https://docs.rs/jsonrpc-stdio-server/" +edition = "2018" homepage = "https://github.com/paritytech/jsonrpc" +license = "MIT" +name = "jsonrpc-stdio-server" repository = "https://github.com/paritytech/jsonrpc" -documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_stdio_server/index.html" -edition = "2018" +version = "10.0.1" [dependencies] futures = "0.1.23" diff --git a/tcp/Cargo.toml b/tcp/Cargo.toml index b7edae8cf..26c089426 100644 --- a/tcp/Cargo.toml +++ b/tcp/Cargo.toml @@ -1,13 +1,13 @@ [package] -name = "jsonrpc-tcp-server" +authors = ["Parity Technologies "] description = "TCP/IP server for JSON-RPC" -version = "10.0.0" -authors = ["NikVolf "] -license = "MIT" +documentation = "https://docs.rs/jsonrpc-tcp-server/" +edition = "2018" homepage = "https://github.com/paritytech/jsonrpc" +license = "MIT" +name = "jsonrpc-tcp-server" repository = "https://github.com/paritytech/jsonrpc" -documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_tcp_server/index.html" -edition = "2018" +version = "10.0.1" [dependencies] log = "0.4" diff --git a/test/Cargo.toml b/test/Cargo.toml index e28d0be7d..a8e1b9e26 100644 --- a/test/Cargo.toml +++ b/test/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "jsonrpc-test" description = "Simple test framework for JSON-RPC." -version = "10.0.0" +version = "10.0.1" authors = ["Tomasz Drwięga "] license = "MIT" homepage = "https://github.com/paritytech/jsonrpc" repository = "https://github.com/paritytech/jsonrpc" -documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_test/index.html" +documentation = "https://docs.rs/jsonrpc-test/" edition = "2018" [dependencies] diff --git a/ws/Cargo.toml b/ws/Cargo.toml index 6dfe5ce15..c262681e9 100644 --- a/ws/Cargo.toml +++ b/ws/Cargo.toml @@ -1,13 +1,13 @@ [package] -name = "jsonrpc-ws-server" +authors = ["Parity Technologies "] description = "WebSockets server for JSON-RPC" -version = "10.0.0" -authors = ["tomusdrw "] -license = "MIT" +documentation = "https://docs.rs/jsonrpc-ws-server/" +edition = "2018" homepage = "https://github.com/paritytech/jsonrpc" +license = "MIT" +name = "jsonrpc-ws-server" repository = "https://github.com/paritytech/jsonrpc" -documentation = "https://paritytech.github.io/jsonrpc/json_ws_server/index.html" -edition = "2018" +version = "10.0.1" [dependencies] error-chain = "0.12"