update job to include signatures

This commit is contained in:
Timur Gordon
2025-10-24 10:44:36 +02:00
parent 2e19ed09df
commit 90754cc4ac
5 changed files with 526 additions and 1 deletions

View File

@@ -37,6 +37,11 @@ chrono = { version = "0.4", features = ["serde"] }
toml = "0.8"
thiserror = "1.0"
async-trait = "0.1"
# Crypto dependencies
secp256k1 = { version = "0.28", features = ["recovery", "rand"], optional = true }
sha2 = { version = "0.10", optional = true }
hex = { version = "0.4", optional = true }
rand = { version = "0.8", optional = true }
# Core hero dependencies
heromodels = { git = "https://git.ourworld.tf/herocode/db.git" }
heromodels_core = { git = "https://git.ourworld.tf/herocode/db.git" }
@@ -65,10 +70,11 @@ ratatui = "0.28"
crossterm = "0.28"
[features]
default = ["calendar", "finance"]
default = ["calendar", "finance", "crypto"]
calendar = []
finance = []
flow = []
legal = []
projects = []
biz = []
crypto = ["secp256k1", "sha2", "hex", "rand"]