relayrl_framework 0.5.0-alpha.2

A distributed, system-oriented multi-agent reinforcement learning framework.
# 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 = "relayrl_framework"
version = "0.5.0-alpha.2"
authors = ["jrcalgo <jacksonr121@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A distributed, system-oriented multi-agent reinforcement learning framework."
documentation = "https://docs.rs/crate/relayrl_framework"
readme = "README.md"
keywords = [
    "machine-learning",
    "multi-agent",
    "framework",
    "client-server",
    "system-integration",
]
categories = [
    "science",
    "simulation",
    "asynchronous",
    "network-programming",
]
license = "Apache-2.0"
repository = "https://github.com/jrcalgo/relayrl"
resolver = "2"

[package.metadata.docs.rs]
all-features = false
no-default-features = true
features = [
    "client",
    "tch-backend",
]
rustdoc-args = [
    "--cfg",
    "docsrs",
]
rustc-args = [
    "--cfg",
    "docsrs",
]

[features]
client = []
default = [
    "client",
    "zmq-transport",
]
full-nats-network = [
    "client",
    "nats-training-server",
    "nats-inference-server",
]
full-zmq-network = [
    "client",
    "zmq-training-server",
    "zmq-inference-server",
]
logging = ["log4rs"]
metrics = [
    "prometheus",
    "opentelemetry",
    "opentelemetry_sdk",
    "opentelemetry-otlp",
]
nats-inference-network = [
    "client",
    "nats-inference-server",
]
nats-inference-server = ["nats-transport"]
nats-training-network = [
    "client",
    "nats-training-server",
]
nats-training-server = ["nats-transport"]
nats-transport = ["async-nats"]
profile = [
    "flamegraph",
    "console-subscriber",
]
tch-backend = [
    "relayrl_types/tch-backend",
    "relayrl_types/tch-model",
]
zmq-inference-network = [
    "client",
    "zmq-inference-server",
]
zmq-inference-server = ["zmq-transport"]
zmq-training-network = [
    "client",
    "zmq-training-server",
]
zmq-training-server = ["zmq-transport"]
zmq-transport = ["zmq"]

[lib]
name = "relayrl_framework"
crate-type = ["rlib"]
path = "src/lib.rs"

[dependencies.active-uuid-registry]
version = "0.7.1"
features = ["concurrent-map"]

[dependencies.arrow]
version = "57.3.0"
features = [
    "ipc_compression",
    "default",
]

[dependencies.arrow-array]
version = "57.3.0"

[dependencies.arrow-schema]
version = "57.3.0"

[dependencies.async-nats]
version = "0.46.0"
optional = true

[dependencies.async-trait]
version = "0.1.89"

[dependencies.bincode]
version = "2.0.1"

[dependencies.burn-tensor]
version = "0.20.1"

[dependencies.bytemuck]
version = "1.25.0"

[dependencies.console-subscriber]
version = "0.4.1"
optional = true

[dependencies.dashmap]
version = "6.1.0"

[dependencies.flamegraph]
version = "0.6.7"
optional = true

[dependencies.log]
version = "0.4.28"
features = ["kv"]

[dependencies.log4rs]
version = "1.3.0"
optional = true

[dependencies.once_cell]
version = "1.19.0"

[dependencies.opentelemetry]
version = "0.31.0"
optional = true

[dependencies.opentelemetry-otlp]
version = "0.31.0"
optional = true

[dependencies.opentelemetry_sdk]
version = "0.31.0"
features = [
    "metrics",
    "rt-tokio",
]
optional = true

[dependencies.prometheus]
version = "0.14.0"
features = ["process"]
optional = true

[dependencies.rand]
version = "0.9.2"

[dependencies.relayrl_types]
version = "0.5.3"
features = [
    "ndarray-backend",
    "codec-full",
    "onnx-model",
]

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

[dependencies.serde_json]
version = "1.0.149"

[dependencies.tempfile]
version = "3.26.0"

[dependencies.thiserror]
version = "2.0.18"

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

[dependencies.uuid]
version = "1.22.0"
features = ["v8"]

[dependencies.zmq]
version = "0.10.0"
optional = true

[dev-dependencies.criterion]
version = "0.5.1"
features = [
    "html_reports",
    "async_tokio",
]

[dev-dependencies.gym]
version = "2.2.1"