scuriolus 0.3.0

Scuriolus is a modular trading bot platform.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "scuriolus"
version = "0.3.0"
authors = ["Corentin Lafond <corentin.lafond@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Scuriolus is a modular trading bot platform."
readme = "README.md"
keywords = [
    "cryptocurrency",
    "trading",
]
license = "Apache-2.0"
repository = "https://gitlab.com/LafCorentin/scuriolus"

[package.metadata.scripts]
build = "cargo build --release"
doc = 'RUSTDOCFLAGS="-D warnings" cargo doc --no-deps --lib'
fmt = "cargo fmt --all"
perfo = 'RUST_LOG="info,mexc_rs=info,hyper=info,surrealdb=warn,rocksdb=warn" cargo run --bin perfo --features="mexc"'
run = "cargo run --release"
test_unit_simple = 'RUST_LOG="info,mexc_rs=debug,hyper=info,surrealdb=warn,rocksdb=warn" cargo test --all'
test_unit_with_mexc = 'RUST_LOG="info,mexc_rs=trace,hyper=info,surrealdb=warn,rocksdb=warn" cargo test --all --features mexc'

[features]
default = []
mexc = []

[lib]
name = "scuriolus"
path = "src/lib.rs"

[[bin]]
name = "perfo"
path = "src/bin/perfo.rs"
required-features = ["mexc"]

[[bin]]
name = "scuriolus"
path = "src/main.rs"

[[test]]
name = "strict_buy"
path = "tests/strict_buy.rs"

[[test]]
name = "trend_tunnel"
path = "tests/trend_tunnel.rs"

[dependencies.anyhow]
version = "1.0.97"

[dependencies.atomic_enum]
version = "0.3.0"

[dependencies.chrono]
version = "0.4.40"
features = ["serde"]

[dependencies.ctor]
version = "0.4.1"

[dependencies.derive-getters]
version = "0.5.0"

[dependencies.derive_setters]
version = "0.1.8"

[dependencies.dotenv]
version = "0.15.0"

[dependencies.futures]
version = "0.3.31"

[dependencies.gtrend-rs]
version = "1.1.0"

[dependencies.linregress]
version = "0.5.4"

[dependencies.mexc-rs]
version = "0.6.3"

[dependencies.mockall]
version = "0.13.1"

[dependencies.rust_decimal]
version = "1.37.0"

[dependencies.serde]
version = "1.0.219"
features = ["derive"]

[dependencies.serde_json]
version = "1.0.140"

[dependencies.strum]
version = "0.27"

[dependencies.strum_macros]
version = "0.27"

[dependencies.surrealdb]
version = "2.2.1"
features = [
    "kv-rocksdb",
    "kv-mem",
]

[dependencies.thiserror]
version = "2.0.12"

[dependencies.tokio]
version = "1.43"
features = ["full"]

[dependencies.tracing]
version = "0.1.41"

[dependencies.tracing-appender]
version = "0.2.3"

[dependencies.tracing-subscriber]
version = "0.3.19"
features = ["env-filter"]

[dependencies.uuid]
version = "1.16.0"

[profile.dev]
debug = 2
split-debuginfo = "unpacked"
incremental = true