[package]
edition = "2021"
name = "openoutcry"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "OpenOutcry — leak-free point-in-time trading-agent environment (a Gym for trading agents)."
readme = "README.md"
keywords = [
"trading",
"agent",
"environment",
"backtest",
"simulation",
]
categories = [
"science",
"finance",
"simulation",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/general-liquidity/openoutcry"
[lib]
name = "openoutcry"
path = "src/lib.rs"
[[example]]
name = "score-a-trajectory"
path = "examples/score-a-trajectory.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.sharpebench-core]
version = "0.0.7"
[dependencies.sharpebench-protocol]
version = "0.0.7"
[dependencies.sharpebench-sim]
version = "0.0.7"
[dev-dependencies.serde_json]
version = "1"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.rayon]
version = "1"
[lints.clippy]
dbg_macro = "deny"
todo = "deny"
[lints.clippy.all]
level = "deny"
priority = -1