-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (52 loc) · 1.67 KB
/
Copy pathCargo.toml
File metadata and controls
58 lines (52 loc) · 1.67 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[workspace]
resolver = "2"
members = [
"crates/*",
"examples/native",
"examples/relay",
]
exclude = [
"crates/gateway/vendor/netlink-packet-core",
]
[workspace.package]
version = "0.21.0"
edition = "2021"
license = "GPL-3.0-only"
authors = ["RND <dev@ringsnetwork.io>"]
repository = "https://github.com/RingsNetwork/rings"
[workspace.dependencies]
async-trait = "0.1.77"
js-sys = "0.3.98"
jsonrpc-core = "18.0.0"
rings-codec = { path = "crates/codec", version = "0.21.0" }
rings-core = { path = "crates/core", version = "0.21.0", default-features = false }
rings-derive = { path = "crates/derive", version = "0.21.0", default-features = false }
rings-gateway = { path = "crates/gateway", version = "0.21.0" }
rings-measure = { path = "crates/measure", version = "0.21.0" }
rings-network-policy = { path = "crates/network-policy", version = "0.21.0" }
rings-node = { path = "crates/node", version = "0.21.0" }
rings-rpc = { path = "crates/rpc", version = "0.21.0", default-features = false }
rings-transport = { path = "crates/transport", version = "0.21.0" }
serde-wasm-bindgen = "0.6.5"
wasm-bindgen = "0.2.121"
wasm-bindgen-futures = "0.4.71"
wasm-bindgen-macro-support = "0.2.121"
wasm-bindgen-test = "0.3.71"
webrtc = { version = "0.17.1" }
[workspace.lints.rust]
missing_docs = "deny"
warnings = "deny"
[workspace.lints.clippy]
unwrap_used = "deny"
expect_used = "deny"
panic = "deny"
todo = "deny"
unimplemented = "deny"
indexing_slicing = "deny"
[patch.crates-io]
# Upstream 0.8.2 with only its macro dependency redirected to maintained `pastey`.
netlink-packet-core = { path = "crates/gateway/vendor/netlink-packet-core" }
[profile.release]
opt-level = 3
lto = true
strip = true