25 lines
509 B
TOML
25 lines
509 B
TOML
[package]
|
|
name = "hero-job"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description = "Job types and models for Hero"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[lib]
|
|
name = "hero_job"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
chrono.workspace = true
|
|
uuid.workspace = true
|
|
log.workspace = true
|
|
hex.workspace = true
|
|
sha2.workspace = true
|
|
secp256k1.workspace = true
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
wasm-bindgen.workspace = true
|