Files
logos-execution-zone/lee/state_machine/Cargo.toml
T
Marvin Jones 6b1f016aee fix(lee): address PR #733 review comments
- RESERVED_DEPLOYMENT_PROGRAM_ACCOUNT_ID: restore the SHA256 derivation
  docstring that explains the constant instead of leaving it as an opaque
  byte array, and switch the array itself to a hex literal (hex-literal,
  already a workspace dependency) for readability.
- Rename the loader/loader_core crate to program_loader/program_loader_core
  to disambiguate it, across the directory, package name, workspace
  members/dependency alias, both dependent crates, and every call site.
2026-08-22 17:39:23 -04:00

41 lines
819 B
TOML

[package]
name = "lee"
version = "0.1.0"
edition = "2024"
license = { workspace = true }
[lints]
workspace = true
[dependencies]
lee_core = { workspace = true, features = ["host"] }
anyhow.workspace = true
thiserror.workspace = true
risc0-zkvm = { workspace = true, features = ["client"] }
serde.workspace = true
serde_with.workspace = true
sha2.workspace = true
rand.workspace = true
borsh.workspace = true
hex.workspace = true
k256.workspace = true
risc0-binfmt = "3.0.2"
log.workspace = true
program_loader_core.workspace = true
[build-dependencies]
build_utils.workspace = true
[dev-dependencies]
lee_core = { workspace = true, features = ["test_utils"] }
test_methods = { path = "test_methods" }
hex-literal = "1.0.0"
test-case = "3.3.1"
[features]
default = []
prove = ["risc0-zkvm/prove"]
test-utils = []