forked from RingsNetwork/rings
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
31 lines (28 loc) · 910 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[workspace]
resolver = "2"
members = ["crates/*", "examples/native", "examples/snark"]
[workspace.package]
version = "0.7.0"
edition = "2021"
license = "GPL-3.0"
authors = ["RND <[email protected]>"]
repository = "https://github.com/RingsNetwork/rings-node"
[workspace.dependencies]
async-trait = "0.1.77"
js-sys = "0.3.64"
jsonrpc-core = "18.0.0"
rings-core = { path = "crates/core", default-features = false }
rings-derive = { path = "crates/derive", default-features = false }
rings-node = { path = "crates/node" }
rings-rpc = { path = "crates/rpc", default-features = false }
rings-snark = { path = "crates/snark", default-features = false }
rings-transport = { path = "crates/transport" }
serde-wasm-bindgen = "0.6.5"
wasm-bindgen = "0.2.87"
wasm-bindgen-futures = "0.4.37"
wasm-bindgen-macro-support = "0.2.84"
webrtc = { version = "0.10.1" }
[profile.release]
opt-level = 3
lto = true
strip = true