Skip to content

Commit

Permalink
Disable torii-core for grpc client
Browse files Browse the repository at this point in the history
  • Loading branch information
tarrencev committed Nov 1, 2023
1 parent 289f83e commit b53a6a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/torii/grpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ version.workspace = true
[dependencies]
bytes = "1.0"
dojo-types = { path = "../../dojo-types" }
torii-core = { path = "../core" }
futures-util = "0.3.28"
futures.workspace = true
parking_lot.workspace = true
rayon.workspace = true
starknet-crypto.workspace = true
starknet.workspace = true
thiserror.workspace = true
torii-core = { path = "../core", optional = true }

serde.workspace = true
strum_macros.workspace = true
Expand Down Expand Up @@ -47,4 +47,4 @@ wasm-tonic-build.workspace = true

[features]
client = [ ]
server = [ ] # this feature can't be build on wasm32
server = [ "dep:torii-core" ] # this feature can't be build on wasm32

0 comments on commit b53a6a6

Please sign in to comment.