mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-08-26 03:41:13 +00:00
- 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.
30 lines
548 B
TOML
30 lines
548 B
TOML
[package]
|
|
name = "lee_core"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
risc0-zkvm.workspace = true
|
|
borsh.workspace = true
|
|
serde.workspace = true
|
|
serde_with.workspace = true
|
|
thiserror.workspace = true
|
|
bytemuck.workspace = true
|
|
bytesize.workspace = true
|
|
base58.workspace = true
|
|
ml-kem = { workspace = true }
|
|
chacha20 = { version = "0.10" }
|
|
hex-literal = "1.0.0"
|
|
|
|
[dev-dependencies]
|
|
serde_json.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
host = ["ml-kem/getrandom"]
|
|
test_utils = ["host"]
|