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
c3235fb6
Unverified
Commit
c3235fb6
authored
Sep 24, 2021
by
Squirrel
Committed by
GitHub
Sep 24, 2021
Browse files
less deps (#484)
parent
321ee4ae
Changes
7
Hide whitespace changes
Inline
Side-by-side
examples/Cargo.toml
View file @
c3235fb6
...
...
@@ -12,8 +12,6 @@ env_logger = "0.9"
jsonrpsee
=
{
path
=
"../jsonrpsee"
,
features
=
["full"]
}
log
=
"0.4"
tokio
=
{
version
=
"1"
,
features
=
["full"]
}
serde
=
"1"
serde_json
=
"1"
[[example]]
name
=
"http"
...
...
http-client/Cargo.toml
View file @
c3235fb6
...
...
@@ -11,7 +11,6 @@ documentation = "https://docs.rs/jsonrpsee-http-client"
[dependencies]
async-trait
=
"0.1"
futures
=
{
version
=
"0.3.14"
,
default-features
=
false
,
features
=
["std"]
}
hyper-rustls
=
"0.22"
hyper
=
{
version
=
"0.14.10"
,
features
=
[
"client"
,
"http1"
,
"http2"
,
"tcp"
]
}
jsonrpsee-types
=
{
path
=
"../types"
,
version
=
"0.3.0"
}
...
...
http-server/Cargo.toml
View file @
c3235fb6
...
...
@@ -10,7 +10,6 @@ homepage = "https://github.com/paritytech/jsonrpsee"
documentation
=
"https://docs.rs/jsonrpsee-http-server"
[dependencies]
thiserror
=
"1"
hyper
=
{
version
=
"0.14.10"
,
features
=
[
"server"
,
"http1"
,
"http2"
,
"tcp"
]
}
futures-channel
=
"0.3.14"
futures-util
=
{
version
=
"0.3.14"
,
default-features
=
false
}
...
...
@@ -19,7 +18,6 @@ jsonrpsee-utils = { path = "../utils", version = "0.3.0", features = ["server",
globset
=
"0.4"
lazy_static
=
"1.4"
log
=
"0.4"
serde
=
{
version
=
"1"
,
default-features
=
false
,
features
=
["derive"]
}
serde_json
=
"1"
socket2
=
"0.4"
tokio
=
{
version
=
"1"
,
features
=
[
"rt-multi-thread"
,
"macros"
]
}
...
...
@@ -28,4 +26,3 @@ unicase = "2.6.0"
[dev-dependencies]
env_logger
=
"0.9"
jsonrpsee-test-utils
=
{
path
=
"../test-utils"
}
jsonrpsee-http-client
=
{
path
=
"../http-client"
}
tests/Cargo.toml
View file @
c3235fb6
...
...
@@ -9,7 +9,6 @@ publish = false
[dev-dependencies]
beef
=
{
version
=
"0.5.1"
,
features
=
["impl_serde"]
}
env_logger
=
"0.9"
futures-channel
=
{
version
=
"0.3.14"
,
default-features
=
false
}
jsonrpsee
=
{
path
=
"../jsonrpsee"
,
features
=
["full"]
}
tokio
=
{
version
=
"1"
,
features
=
["full"]
}
...
...
utils/Cargo.toml
View file @
c3235fb6
...
...
@@ -38,6 +38,5 @@ server = [
[dev-dependencies]
serde_json
=
"1.0"
env_logger
=
"0.9"
tokio
=
{
version
=
"1"
,
features
=
[
"macros"
,
"rt"
]
}
jsonrpsee
=
{
path
=
"../jsonrpsee"
}
ws-client/Cargo.toml
View file @
c3235fb6
...
...
@@ -29,5 +29,4 @@ rustls = "0.19.1"
rustls-native-certs
=
"0.5.0"
[dev-dependencies]
env_logger
=
"0.9"
jsonrpsee-test-utils
=
{
path
=
"../test-utils"
}
ws-server/Cargo.toml
View file @
c3235fb6
...
...
@@ -10,14 +10,11 @@ homepage = "https://github.com/paritytech/jsonrpsee"
documentation
=
"https://docs.rs/jsonrpsee-ws-server"
[dependencies]
thiserror
=
"1"
futures-channel
=
"0.3.14"
futures-util
=
{
version
=
"0.3.14"
,
default-features
=
false
,
features
=
[
"io"
,
"async-await-macro"
]
}
jsonrpsee-types
=
{
path
=
"../types"
,
version
=
"0.3.0"
}
jsonrpsee-utils
=
{
path
=
"../utils"
,
version
=
"0.3.0"
,
features
=
["server"]
}
log
=
"0.4"
rustc-hash
=
"1.1.0"
serde
=
{
version
=
"1"
,
default-features
=
false
,
features
=
["derive"]
}
serde_json
=
{
version
=
"1"
,
features
=
["raw_value"]
}
soketto
=
"0.6"
tokio
=
{
version
=
"1"
,
features
=
[
"net"
,
"rt-multi-thread"
,
"macros"
]
}
...
...
@@ -27,4 +24,3 @@ tokio-util = { version = "0.6", features = ["compat"] }
anyhow
=
"1"
env_logger
=
"0.9"
jsonrpsee-test-utils
=
{
path
=
"../test-utils"
}
jsonrpsee-ws-client
=
{
path
=
"../ws-client"
}
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