simple-someip 0.7.0

A lightweight SOME/IP serialization and communication library
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 = "simple-someip"
version = "0.7.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight SOME/IP serialization and communication library"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/luminartech/simple_someip"

[features]
client = [
    "std",
    "dep:tokio",
    "dep:socket2",
]
default = ["std"]
server = [
    "std",
    "dep:tokio",
    "dep:socket2",
]
std = [
    "embedded-io/std",
    "thiserror/std",
    "tracing/std",
]

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

[[test]]
name = "client_server"
path = "tests/client_server.rs"
required-features = [
    "client",
    "server",
]

[dependencies.crc]
version = "3.4"

[dependencies.embedded-io]
version = "0.7"

[dependencies.heapless]
version = "0.9"

[dependencies.socket2]
version = "0.5"
features = ["all"]
optional = true

[dependencies.thiserror]
version = "2"
default-features = false

[dependencies.tokio]
version = "1"
features = [
    "macros",
    "net",
    "rt",
    "sync",
    "time",
]
optional = true
default-features = false

[dependencies.tracing]
version = "0.1"
default-features = false

[dev-dependencies.tokio]
version = "1"
features = ["rt-multi-thread"]

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