gorust 0.1.7

Go-style concurrency in Rust - bringing Go-style concurrency patterns to Rust with familiar primitives like goroutines and channels
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 = "2021"
name = "gorust"
version = "0.1.7"
authors = ["lijun <1489573464@qq.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Go-style concurrency in Rust - bringing Go-style concurrency patterns to Rust with familiar primitives like goroutines and channels"
homepage = "https://github.com/WLmutou/gorust"
documentation = "https://docs.rs/gorust"
readme = "README.md"
keywords = [
    "concurrency",
    "goroutines",
    "channels",
    "async",
    "go",
]
categories = [
    "concurrency",
    "asynchronous",
]
license = "MIT"
repository = "https://github.com/WLmutou/gorust"

[badges.maintenance]
status = "experimental"

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

[[bin]]
name = "test_main"
path = "src/bin/test_main.rs"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.ctrlc]
version = "3.4.5"

[dependencies.env_logger]
version = "0.10"

[dependencies.go-macros]
version = "0.1.2"

[dependencies.lazy_static]
version = "1.4"

[dependencies.log]
version = "0.4"

[dependencies.mio]
version = "0.8"
features = [
    "os-poll",
    "net",
    "os-ext",
]

[dependencies.num_cpus]
version = "1.6"

[dependencies.parking_lot]
version = "0.12"

[dev-dependencies.criterion]
version = "0.5"

[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true