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

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

[workspace.package]
description = "A library for building p2p, decentralized, and collaborative software"
version = "0.1.2"
edition = "2021"
homepage = "https://karyontech.net"
repository = "https://github.com/karyontech/karyon"
license = "GPL-3.0"
authors = ["hozan23 <hozan23@karyontech.net>"]

[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 }