ironsbe 0.3.0

High-performance SBE (Simple Binary Encoding) server/client for Rust
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 = "ironsbe"
version = "0.3.0"
authors = ["Joaquin Bejar <jb@taunais.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance SBE (Simple Binary Encoding) server/client for Rust"
homepage = "https://github.com/joaquinbejar/IronSBE"
readme = "README.md"
keywords = [
    "sbe",
    "binary-encoding",
    "trading",
    "low-latency",
    "finance",
]
categories = [
    "encoding",
    "network-programming",
    "finance",
]
license = "MIT"
repository = "https://github.com/joaquinbejar/IronSBE"
resolver = "2"

[features]
default = []
tcp-uring = [
    "ironsbe-server/tcp-uring",
    "ironsbe-client/tcp-uring",
    "ironsbe-transport/tcp-uring",
]
xdp = [
    "ironsbe-server/xdp",
    "ironsbe-client/xdp",
    "ironsbe-transport/xdp",
]

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

[[example]]
name = "benchmark_report"
path = "examples/benchmark_report.rs"

[[example]]
name = "client"
path = "examples/client.rs"

[[example]]
name = "server"
path = "examples/server.rs"

[[example]]
name = "uring_client"
path = "examples/uring_client.rs"

[[example]]
name = "uring_server"
path = "examples/uring_server.rs"

[[example]]
name = "xdp_client"
path = "examples/xdp_client.rs"

[[example]]
name = "xdp_server"
path = "examples/xdp_server.rs"

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

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

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

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

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

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

[dependencies.ironsbe-channel]
version = "0.3.0"

[dependencies.ironsbe-client]
version = "0.3.0"

[dependencies.ironsbe-codegen]
version = "0.3.0"

[dependencies.ironsbe-core]
version = "0.3.0"

[dependencies.ironsbe-marketdata]
version = "0.3.0"

[dependencies.ironsbe-schema]
version = "0.3.0"

[dependencies.ironsbe-server]
version = "0.3.0"

[dependencies.ironsbe-transport]
version = "0.3.0"

[dev-dependencies.tokio]
version = "1.51"
features = [
    "full",
    "rt-multi-thread",
    "macros",
    "signal",
]

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

[target.'cfg(target_os = "linux")'.dev-dependencies.tokio-uring]
version = "0.5"