diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..7f8bc5b --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "yogachain-xcvm-executor" +version = "0.1.0" +edition = "2021" + +[dependencies] +# Serialization +serde = { version = "1.0", features = ["derive"] } +serde_json = "1.0" + +# Cryptography (for zk-SNARK verification) +bellman = "0.13" +jubjub = "0.10.0" + +# Cross-Chain Messaging & Execution +tokio = { version = "1", features = ["full"] } + +# Blockchain Integration +yogachain-core = { path = "../core" } +yogachain-contracts = { path = "../contracts" }