aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: e8586b7d55172c3d36bbad470a63765a98e80426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[workspace]
resolver = "2"

# Please ensure that each crate comes before any other crate that depends on it
members = ["core", "net", "p2p", "jsonrpc"]

[workspace.package]
version = "0.1.0"
edition = "2021"

[workspace.dependencies]
karyon_core = { path = "core", default-features = false }
karyon_net = { path = "net", default-features = false }
karyon_jsonrpc = { path = "jsonrpc", default-features = false }
karyon_p2p = { path = "p2p", default-features = false }