summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml42
1 files changed, 42 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..1eb7537
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,42 @@
+[workspace]
+members = [
+ "onioncoin",
+ "core",
+ "crypto",
+ "network",
+ "timing",
+ "consensus",
+ "inheritance",
+]
+resolver = "2"
+
+[workspace.package]
+version = "0.1.0"
+edition = "2021"
+authors = ["OnionCoin Developers"]
+license = "MIT"
+
+[workspace.dependencies]
+# Crypto
+ed25519-dalek = "2.1"
+curve25519-dalek = "4.1"
+sha3 = "0.10"
+rand = "0.8"
+blake3 = "1.5"
+
+# Serialization
+serde = { version = "1.0", features = ["derive"] }
+serde_json = "1.0"
+bincode = "1.3"
+serde_bytes = "0.11"
+
+# Async & Networking
+tokio = { version = "1.35", features = ["full"] }
+async-trait = "0.1"
+
+# Time
+chrono = "0.4"
+
+# Error handling
+thiserror = "1.0"
+anyhow = "1.0"