[package]
edition = "2021"
rust-version = "1.70"
name = "goish"
version = "0.2.0"
authors = ["Chanwit Kaewkasi <chanwit@gmail.com>"]
build = false
exclude = [
"refs/*",
"/.claude/*",
"/.memsearch/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Write Rust using Go idioms — a Go-flavored standard library for Rust"
homepage = "https://github.com/chanwit/goish"
documentation = "https://docs.rs/goish"
readme = "README.md"
keywords = [
"go",
"golang",
"idioms",
"stdlib",
"port",
]
categories = [
"development-tools",
"rust-patterns",
"api-bindings",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/chanwit/goish"
[lib]
name = "goish"
path = "src/lib.rs"
[[example]]
name = "config"
path = "examples/config.rs"
[[example]]
name = "hello"
path = "examples/hello.rs"
[[example]]
name = "literals"
path = "examples/literals.rs"
[[example]]
name = "pipeline"
path = "examples/pipeline.rs"
[[example]]
name = "worker"
path = "examples/worker.rs"
[dependencies.crossbeam-channel]
version = "0.5"