[package]
edition = "2024"
name = "stockholm"
version = "0.2.21"
authors = ["Stephan Boyer <stephan@stephanboyer.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An algorithmic trading bot."
homepage = "https://github.com/stepchowfun/stockholm"
documentation = "https://github.com/stepchowfun/stockholm"
readme = "README.md"
license = "MIT"
repository = "https://github.com/stepchowfun/stockholm"
[[bin]]
name = "stockholm"
path = "src/main.rs"
[dependencies.burn]
version = "0.21.0"
features = [
"autodiff",
"dataset",
"ndarray",
"std",
]
default-features = false
[dependencies.clap]
version = "4.6.5"
features = ["derive"]
[dependencies.csv]
version = "1.4.0"
[dependencies.dirs]
version = "6.0.0"
[dependencies.ibapi]
version = "3.3.0"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.tempfile]
version = "3.27.0"
[dependencies.time]
version = "0.3.55"
features = ["parsing"]
[dependencies.tokio]
version = "1.53.1"
features = [
"macros",
"rt-multi-thread",
"time",
]
[dependencies.uuid]
version = "1.24.0"
features = ["v4"]
[dependencies.yaml_serde]
version = "0.10.4"
[lints.clippy]
default_numeric_fallback = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
warnings = "deny"