llam 0.1.1

Safe, Go-style Rust bindings for the LLAM runtime
# 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 = "2021"
rust-version = "1.82"
name = "llam"
version = "0.1.1"
authors = ["Feralthedogg"]
build = "build.rs"
links = "llam_runtime"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe, Go-style Rust bindings for the LLAM runtime"
homepage = "https://github.com/Feralthedogg/LLAM"
readme = "README.md"
keywords = [
    "llam",
    "runtime",
    "fibers",
    "concurrency",
    "ffi",
]
categories = [
    "asynchronous",
    "concurrency",
    "network-programming",
]
license = "Apache-2.0"
repository = "https://github.com/Feralthedogg/LLAM-rs"

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

[[bin]]
name = "llam-rs-bench"
path = "src/bin/llam-rs-bench.rs"

[[bin]]
name = "llam-rs-stress"
path = "src/bin/llam-rs-stress.rs"

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

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

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

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

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

[[bench]]
name = "runtime_bench"
path = "benches/runtime_bench.rs"
harness = false

[dependencies.libc]
version = "0.2"

[dependencies.socket2]
version = "0.5"

[build-dependencies]