[package]
edition = "2021"
name = "pot-o-validator"
version = "0.2.0"
authors = ["TribeWarez"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PoT-O (Proof of Tensor Optimizations) Validator Service"
homepage = "https://pot.rpc.gateway.tribewarez.com"
documentation = "https://docs.rs/pot-o-validator"
readme = "README.md"
keywords = [
"pot-o",
"blockchain",
"validator",
"tensor",
"mining",
]
categories = [
"cryptography::cryptocurrencies",
"development-tools",
]
license = "MIT"
repository = "https://github.com/tribewarez/pot-o-validator"
[lib]
name = "pot_o_validator"
path = "src/lib.rs"
[[bin]]
name = "pot-o-golden-proofs"
path = "src/bin/pot_o_golden_proofs.rs"
[[bin]]
name = "pot-o-mml-calibrate"
path = "src/bin/pot_o_mml_calibrate.rs"
[[bin]]
name = "pot-o-timing"
path = "src/bin/pot_o_timing.rs"
[[bin]]
name = "pot-o-validator"
path = "src/main.rs"
[[test]]
name = "http_status_smoke"
path = "tests/http_status_smoke.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.ai3-lib]
version = "0.2.0"
[dependencies.anyhow]
version = "1.0"
[dependencies.axum]
version = "0.7"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.hex]
version = "0.4"
[dependencies.pot-o-core]
version = "0.2.0"
[dependencies.pot-o-extensions]
version = "0.2.0"
[dependencies.pot-o-mining]
version = "0.2.0"
[dependencies.rand]
version = "0.8"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.solana-client]
version = "1.18"
[dependencies.solana-sdk]
version = "1.18"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.0"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dependencies.tower-http]
version = "0.5"
features = ["cors"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.uuid]
version = "1.0"
features = ["v4"]
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"