Skip to content

Commit 7047bbb

Browse files
markosg040xAndoroid
authored andcommitted
feat: add jolt-host crate
1 parent 3d5e431 commit 7047bbb

10 files changed

Lines changed: 2539 additions & 0 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ keywords = ["SNARK", "cryptography", "proofs"]
2424

2525
[workspace]
2626
members = [
27+
"crates/jolt-host",
2728
"crates/jolt-poly",
2829
"crates/jolt-lookup-tables",
2930
"crates/jolt-riscv",

crates/jolt-host/Cargo.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[package]
2+
name = "jolt-host"
3+
version = "0.1.0"
4+
authors = ["Jolt Contributors"]
5+
edition = "2021"
6+
license = "MIT OR Apache-2.0"
7+
description = "Host-side guest program compilation, decoding, and tracing for Jolt"
8+
repository = "https://github.com/a16z/jolt"
9+
keywords = ["SNARK", "zkvm", "risc-v", "compilation"]
10+
categories = ["cryptography"]
11+
12+
[lints]
13+
workspace = true
14+
15+
[dependencies]
16+
bincode = { version = "2", features = ["serde"] }
17+
common = { workspace = true }
18+
jolt-lookup-tables = { path = "../jolt-lookup-tables" }
19+
jolt-riscv = { path = "../jolt-riscv" }
20+
serde.workspace = true
21+
tracer = { workspace = true, features = ["std"] }
22+
tracing.workspace = true

0 commit comments

Comments
 (0)