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
bdc25a88
Unverified
Commit
bdc25a88
authored
Dec 01, 2021
by
Niklas Adolfsson
Committed by
GitHub
Dec 01, 2021
Browse files
deps: tokio ^1.8 (#586)
parent
1657e26b
Changes
10
Hide whitespace changes
Inline
Side-by-side
benches/Cargo.toml
View file @
bdc25a88
...
...
@@ -17,7 +17,7 @@ jsonrpc-http-server = "18.0.0"
jsonrpc-pubsub
=
"18.0.0"
num_cpus
=
"1"
serde_json
=
"1"
tokio
=
{
version
=
"1"
,
features
=
["full"]
}
tokio
=
{
version
=
"1
.8
"
,
features
=
["full"]
}
[[bench]]
name
=
"bench"
...
...
examples/Cargo.toml
View file @
bdc25a88
...
...
@@ -12,7 +12,7 @@ env_logger = "0.9"
jsonrpsee
=
{
path
=
"../jsonrpsee"
,
features
=
["full"]
}
tracing
=
"0.1"
tracing-subscriber
=
"0.2"
tokio
=
{
version
=
"1"
,
features
=
["full"]
}
tokio
=
{
version
=
"1
.8
"
,
features
=
["full"]
}
palaver
=
"0.2"
[[example]]
...
...
http-client/Cargo.toml
View file @
bdc25a88
...
...
@@ -19,10 +19,10 @@ jsonrpsee-utils = { path = "../utils", version = "0.5.1", features = ["client",
serde
=
{
version
=
"1.0"
,
default-features
=
false
,
features
=
["derive"]
}
serde_json
=
"1.0"
thiserror
=
"1.0"
tokio
=
{
version
=
"1"
,
features
=
["time"]
}
tokio
=
{
version
=
"1
.8
"
,
features
=
["time"]
}
tracing
=
"0.1"
url
=
"2.2"
[dev-dependencies]
jsonrpsee-test-utils
=
{
path
=
"../test-utils"
}
tokio
=
{
package
=
"tokio"
,
version
=
"1"
,
features
=
[
"net"
,
"rt-multi-thread"
,
"macros"
]
}
tokio
=
{
version
=
"1
.8
"
,
features
=
[
"net"
,
"rt-multi-thread"
,
"macros"
]
}
http-server/Cargo.toml
View file @
bdc25a88
...
...
@@ -20,7 +20,7 @@ lazy_static = "1.4"
tracing
=
"0.1"
serde_json
=
"1"
socket2
=
"0.4"
tokio
=
{
version
=
"1"
,
features
=
[
"rt-multi-thread"
,
"macros"
]
}
tokio
=
{
version
=
"1
.8
"
,
features
=
[
"rt-multi-thread"
,
"macros"
]
}
unicase
=
"2.6.0"
[dev-dependencies]
...
...
proc-macros/Cargo.toml
View file @
bdc25a88
...
...
@@ -21,5 +21,5 @@ proc-macro-crate = "1"
[dev-dependencies]
jsonrpsee
=
{
path
=
"../jsonrpsee"
,
features
=
["full"]
}
trybuild
=
"1.0"
tokio
=
{
version
=
"1"
,
features
=
[
"rt"
,
"macros"
]
}
tokio
=
{
version
=
"1
.8
"
,
features
=
[
"rt"
,
"macros"
]
}
futures-channel
=
{
version
=
"0.3.14"
,
default-features
=
false
}
test-utils/Cargo.toml
View file @
bdc25a88
...
...
@@ -16,5 +16,5 @@ tracing = "0.1"
serde
=
{
version
=
"1"
,
default-features
=
false
,
features
=
["derive"]
}
serde_json
=
"1"
soketto
=
{
version
=
"0.7.1"
,
features
=
["http"]
}
tokio
=
{
version
=
"1"
,
features
=
[
"net"
,
"rt-multi-thread"
,
"macros"
,
"time"
]
}
tokio
=
{
version
=
"1
.8
"
,
features
=
[
"net"
,
"rt-multi-thread"
,
"macros"
,
"time"
]
}
tokio-util
=
{
version
=
"0.6"
,
features
=
["compat"]
}
tests/Cargo.toml
View file @
bdc25a88
...
...
@@ -12,6 +12,6 @@ env_logger = "0.8"
beef
=
{
version
=
"0.5.1"
,
features
=
["impl_serde"]
}
futures
=
{
version
=
"0.3.14"
,
default-features
=
false
,
features
=
["std"]
}
jsonrpsee
=
{
path
=
"../jsonrpsee"
,
features
=
["full"]
}
tokio
=
{
version
=
"1"
,
features
=
["full"]
}
tokio
=
{
version
=
"1
.8
"
,
features
=
["full"]
}
tracing
=
"0.1"
serde_json
=
"1"
utils/Cargo.toml
View file @
bdc25a88
...
...
@@ -20,7 +20,7 @@ rand = { version = "0.8", optional = true }
serde
=
{
version
=
"1.0"
,
default-features
=
false
,
features
=
["derive"]
,
optional
=
true
}
serde_json
=
{
version
=
"1"
,
features
=
["raw_value"]
,
optional
=
true
}
parking_lot
=
{
version
=
"0.11"
,
optional
=
true
}
tokio
=
{
version
=
"1"
,
features
=
["rt"]
,
optional
=
true
}
tokio
=
{
version
=
"1
.8
"
,
features
=
["rt"]
,
optional
=
true
}
[features]
default
=
[]
...
...
@@ -42,5 +42,5 @@ client = ["jsonrpsee-types"]
[dev-dependencies]
serde_json
=
"1.0"
tokio
=
{
version
=
"1"
,
features
=
[
"macros"
,
"rt"
]
}
tokio
=
{
version
=
"1
.8
"
,
features
=
[
"macros"
,
"rt"
]
}
jsonrpsee
=
{
path
=
"../jsonrpsee"
,
features
=
[
"server"
,
"macros"
]
}
ws-client/Cargo.toml
View file @
bdc25a88
...
...
@@ -21,7 +21,7 @@ serde = "1"
serde_json
=
"1"
soketto
=
"0.7.1"
thiserror
=
"1"
tokio
=
{
version
=
"1"
,
features
=
[
"net"
,
"time"
,
"rt-multi-thread"
,
"macros"
]
}
tokio
=
{
version
=
"1
.8
"
,
features
=
[
"net"
,
"time"
,
"rt-multi-thread"
,
"macros"
]
}
tokio-rustls
=
"0.23"
tokio-util
=
{
version
=
"0.6"
,
features
=
["compat"]
}
tracing
=
"0.1"
...
...
@@ -31,4 +31,4 @@ webpki-roots = "0.22.0"
env_logger
=
"0.9"
jsonrpsee-test-utils
=
{
path
=
"../test-utils"
}
jsonrpsee-utils
=
{
path
=
"../utils"
,
features
=
["client"]
}
tokio
=
{
version
=
"1"
,
features
=
["macros"]
}
tokio
=
{
version
=
"1
.8
"
,
features
=
["macros"]
}
ws-server/Cargo.toml
View file @
bdc25a88
...
...
@@ -17,7 +17,7 @@ jsonrpsee-utils = { path = "../utils", version = "0.5.1", features = ["server"]
tracing
=
"0.1"
serde_json
=
{
version
=
"1"
,
features
=
["raw_value"]
}
soketto
=
"0.7.1"
tokio
=
{
version
=
"1"
,
features
=
[
"net"
,
"rt-multi-thread"
,
"macros"
,
"time"
]
}
tokio
=
{
version
=
"1
.8
"
,
features
=
[
"net"
,
"rt-multi-thread"
,
"macros"
,
"time"
]
}
tokio-util
=
{
version
=
"0.6"
,
features
=
["compat"]
}
[dev-dependencies]
...
...
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