Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ keywords = ["SNARK", "cryptography", "proofs"]

[workspace]
members = [
"crates/jolt-host",
"crates/jolt-crypto",
"crates/jolt-poly",
"crates/jolt-instructions",
Expand Down
21 changes: 21 additions & 0 deletions crates/jolt-host/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[package]
name = "jolt-host"
version = "0.1.0"
authors = ["Jolt Contributors"]
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Host-side guest program compilation, decoding, and tracing for Jolt"
repository = "https://github.com/a16z/jolt"
keywords = ["SNARK", "zkvm", "risc-v", "compilation"]
categories = ["cryptography"]

[lints]
workspace = true

[dependencies]
bincode = { version = "2", features = ["serde"] }
common = { workspace = true }
jolt-instructions = { path = "../jolt-instructions" }
serde.workspace = true
tracer = { workspace = true, features = ["std"] }
tracing.workspace = true
Loading
Loading