Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
parity
Mirrored projects
jsonrpsee
Commits
09d6df17
Unverified
Commit
09d6df17
authored
Apr 20, 2021
by
Niklas Adolfsson
Committed by
GitHub
Apr 20, 2021
Browse files
prep to release 0.2.0-alpha.5 (#278)
parent
31153ac7
Changes
9
Hide whitespace changes
Inline
Side-by-side
http-client/Cargo.toml
View file @
09d6df17
[package]
name
=
"jsonrpsee-http-client"
version
=
"0.2.0-alpha.
4
"
version
=
"0.2.0-alpha.
5
"
authors
=
[
"Parity Technologies <admin@parity.io>"
,
"Pierre Krieger <pierre.krieger1708@gmail.com>"
]
description
=
"HTTP client for JSON-RPC"
edition
=
"2018"
...
...
@@ -12,8 +12,8 @@ hyper13-rustls = { package = "hyper-rustls", version = "0.21", optional = true }
hyper14-rustls
=
{
package
=
"hyper-rustls"
,
version
=
"0.22"
,
optional
=
true
}
hyper14
=
{
package
=
"hyper"
,
version
=
"0.14"
,
features
=
[
"client"
,
"http1"
,
"http2"
,
"tcp"
],
optional
=
true
}
hyper13
=
{
package
=
"hyper"
,
version
=
"0.13"
,
optional
=
true
}
jsonrpsee-types
=
{
path
=
"../types"
,
version
=
"0.2.0-alpha.
4
"
}
jsonrpsee-utils
=
{
path
=
"../utils"
,
version
=
"0.2.0-alpha.
4
"
,
optional
=
true
}
jsonrpsee-types
=
{
path
=
"../types"
,
version
=
"0.2.0-alpha.
5
"
}
jsonrpsee-utils
=
{
path
=
"../utils"
,
version
=
"0.2.0-alpha.
5
"
,
optional
=
true
}
log
=
"0.4"
serde
=
{
version
=
"1.0"
,
default-features
=
false
,
features
=
["derive"]
}
serde_json
=
"1.0"
...
...
http-server/Cargo.toml
View file @
09d6df17
[package]
name
=
"jsonrpsee-http-server"
version
=
"0.2.0-alpha.
4
"
version
=
"0.2.0-alpha.
5
"
authors
=
[
"Parity Technologies <admin@parity.io>"
,
"Pierre Krieger <pierre.krieger1708@gmail.com>"
]
description
=
"HTTP server for JSON-RPC"
edition
=
"2018"
...
...
@@ -10,8 +10,8 @@ license = "MIT"
anyhow
=
"1"
hyper
=
{
version
=
"0.14"
,
features
=
[
"server"
,
"http1"
,
"http2"
]
}
futures
=
{
version
=
"0.3"
,
default-features
=
false
}
jsonrpsee-types
=
{
path
=
"../types"
,
version
=
"0.2.0-alpha.
4
"
}
jsonrpsee-utils
=
{
path
=
"../utils"
,
version
=
"0.2.0-alpha.
4
"
,
features
=
["server"]
}
jsonrpsee-types
=
{
path
=
"../types"
,
version
=
"0.2.0-alpha.
5
"
}
jsonrpsee-utils
=
{
path
=
"../utils"
,
version
=
"0.2.0-alpha.
5
"
,
features
=
["server"]
}
globset
=
"0.4"
lazy_static
=
"1.4"
log
=
"0.4"
...
...
jsonrpsee/Cargo.toml
View file @
09d6df17
[package]
name
=
"jsonrpsee"
description
=
"JSON-RPC crate"
version
=
"0.2.0-alpha.
4
"
version
=
"0.2.0-alpha.
5
"
authors
=
[
"Parity Technologies <admin@parity.io>"
,
"Pierre Krieger <pierre.krieger1708@gmail.com>"
]
license
=
"MIT"
edition
=
"2018"
[dependencies]
http-client
=
{
path
=
"../http-client"
,
version
=
"0.2.0-alpha.
4
"
,
package
=
"jsonrpsee-http-client"
,
optional
=
true
}
http-server
=
{
path
=
"../http-server"
,
version
=
"0.2.0-alpha.
4
"
,
package
=
"jsonrpsee-http-server"
,
optional
=
true
}
ws-client
=
{
path
=
"../ws-client"
,
version
=
"0.2.0-alpha.
4
"
,
package
=
"jsonrpsee-ws-client"
,
optional
=
true
}
ws-server
=
{
path
=
"../ws-server"
,
version
=
"0.2.0-alpha.
4
"
,
package
=
"jsonrpsee-ws-server"
,
optional
=
true
}
proc-macros
=
{
path
=
"../proc-macros"
,
version
=
"0.2.0-alpha.
4
"
,
package
=
"jsonrpsee-proc-macros"
,
optional
=
true
}
types
=
{
path
=
"../types"
,
version
=
"0.2.0-alpha.
4
"
,
package
=
"jsonrpsee-types"
,
optional
=
true
}
http-client
=
{
path
=
"../http-client"
,
version
=
"0.2.0-alpha.
5
"
,
package
=
"jsonrpsee-http-client"
,
optional
=
true
}
http-server
=
{
path
=
"../http-server"
,
version
=
"0.2.0-alpha.
5
"
,
package
=
"jsonrpsee-http-server"
,
optional
=
true
}
ws-client
=
{
path
=
"../ws-client"
,
version
=
"0.2.0-alpha.
5
"
,
package
=
"jsonrpsee-ws-client"
,
optional
=
true
}
ws-server
=
{
path
=
"../ws-server"
,
version
=
"0.2.0-alpha.
5
"
,
package
=
"jsonrpsee-ws-server"
,
optional
=
true
}
proc-macros
=
{
path
=
"../proc-macros"
,
version
=
"0.2.0-alpha.
5
"
,
package
=
"jsonrpsee-proc-macros"
,
optional
=
true
}
types
=
{
path
=
"../types"
,
version
=
"0.2.0-alpha.
5
"
,
package
=
"jsonrpsee-types"
,
optional
=
true
}
[features]
client
=
[
"http-client"
,
"ws-client"
]
...
...
proc-macros/Cargo.toml
View file @
09d6df17
[package]
name
=
"jsonrpsee-proc-macros"
description
=
"Procedueral macros for jsonrpsee"
version
=
"0.2.0-alpha.
4
"
version
=
"0.2.0-alpha.
5
"
authors
=
[
"Parity Technologies <admin@parity.io>"
,
"Pierre Krieger <pierre.krieger1708@gmail.com>"
]
license
=
"MIT"
edition
=
"2018"
...
...
test-utils/Cargo.toml
View file @
09d6df17
[package]
name
=
"jsonrpsee-test-utils"
version
=
"0.2.0-alpha.
4
"
version
=
"0.2.0-alpha.
5
"
authors
=
[
"Parity Technologies <admin@parity.io>"
]
license
=
"MIT"
edition
=
"2018"
...
...
types/Cargo.toml
View file @
09d6df17
[package]
name
=
"jsonrpsee-types"
version
=
"0.2.0-alpha.
4
"
version
=
"0.2.0-alpha.
5
"
authors
=
[
"Parity Technologies <admin@parity.io>"
]
description
=
"Shared types for jsonrpsee"
edition
=
"2018"
...
...
utils/Cargo.toml
View file @
09d6df17
[package]
name
=
"jsonrpsee-utils"
version
=
"0.2.0-alpha.
4
"
version
=
"0.2.0-alpha.
5
"
authors
=
[
"Parity Technologies <admin@parity.io>"
]
description
=
"Utilities for jsonrpsee"
edition
=
"2018"
...
...
@@ -12,7 +12,7 @@ futures-channel = { version = "0.3", default-features = false, optional = true }
futures-util
=
{
version
=
"0.3"
,
default-features
=
false
,
optional
=
true
}
hyper13
=
{
package
=
"hyper"
,
version
=
"0.13"
,
default-features
=
false
,
features
=
["stream"]
,
optional
=
true
}
hyper14
=
{
package
=
"hyper"
,
version
=
"0.14"
,
default-features
=
false
,
features
=
["stream"]
,
optional
=
true
}
jsonrpsee-types
=
{
path
=
"../types"
,
version
=
"0.2.0-alpha.
4
"
,
optional
=
true
}
jsonrpsee-types
=
{
path
=
"../types"
,
version
=
"0.2.0-alpha.
5
"
,
optional
=
true
}
log
=
{
version
=
"0.4"
,
optional
=
true
}
rustc-hash
=
{
version
=
"1"
,
optional
=
true
}
serde
=
{
version
=
"1.0"
,
default-features
=
false
,
features
=
["derive"]
,
optional
=
true
}
...
...
ws-client/Cargo.toml
View file @
09d6df17
[package]
name
=
"jsonrpsee-ws-client"
version
=
"0.2.0-alpha.
4
"
version
=
"0.2.0-alpha.
5
"
authors
=
[
"Parity Technologies <admin@parity.io>"
,
"Pierre Krieger <pierre.krieger1708@gmail.com>"
]
description
=
"WebSocket client for JSON-RPC"
edition
=
"2018"
...
...
@@ -12,7 +12,7 @@ async-std = "1.9"
async-tls
=
"0.11"
fnv
=
"1"
futures
=
{
version
=
"0.3"
,
default-features
=
false
,
features
=
["std"]
}
jsonrpsee-types
=
{
path
=
"../types"
,
version
=
"0.2.0-alpha.
4
"
}
jsonrpsee-types
=
{
path
=
"../types"
,
version
=
"0.2.0-alpha.
5
"
}
log
=
"0.4"
serde
=
"1"
serde_json
=
"1"
...
...
ws-server/Cargo.toml
View file @
09d6df17
[package]
name
=
"jsonrpsee-ws-server"
version
=
"0.2.0-alpha.
4
"
version
=
"0.2.0-alpha.
5
"
authors
=
[
"Parity Technologies <admin@parity.io>"
,
"Pierre Krieger <pierre.krieger1708@gmail.com>"
]
description
=
"WebSocket server for JSON-RPC"
edition
=
"2018"
...
...
@@ -9,8 +9,8 @@ license = "MIT"
[dependencies]
anyhow
=
"1.0.34"
futures
=
{
version
=
"0.3"
,
default-features
=
false
}
jsonrpsee-types
=
{
path
=
"../types"
,
version
=
"0.2.0-alpha.
4
"
}
jsonrpsee-utils
=
{
path
=
"../utils"
,
version
=
"0.2.0-alpha.
4
"
,
features
=
["server"]
}
jsonrpsee-types
=
{
path
=
"../types"
,
version
=
"0.2.0-alpha.
5
"
}
jsonrpsee-utils
=
{
path
=
"../utils"
,
version
=
"0.2.0-alpha.
5
"
,
features
=
["server"]
}
log
=
"0.4"
parking_lot
=
"0.11"
rand
=
"0.8"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment