fix(rpc-types): use jsonrpsee_types so it compiles standalone

before reth-rpc-types would not compile standalone without any feature
turend on, it would work because of the feature being turned on by one of the transitive deps
This commit is contained in:
Georgios Konstantopoulos
2023-02-15 11:59:31 -08:00
parent cd9b988367
commit a08a7b0110
3 changed files with 3 additions and 3 deletions

View File

@ -21,4 +21,4 @@ thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bytes = "1.2"
jsonrpsee = { version = "0.16" }
jsonrpsee-types = { version = "0.16" }

View File

@ -1,5 +1,5 @@
use crate::Log;
use jsonrpsee::types::SubscriptionId;
use jsonrpsee_types::SubscriptionId;
use reth_primitives::H256;
use serde::{Deserialize, Deserializer, Serialize, Serializer};