[package]
edition = "2021"
rust-version = "1.70"
name = "goish"
version = "0.4.2"
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 = "webscrape"
path = "examples/webscrape.rs"
[[example]]
name = "worker"
path = "examples/worker.rs"
[[test]]
name = "bytes_test"
path = "tests/bytes_test.rs"
[[test]]
name = "chan_bench"
path = "tests/chan_bench.rs"
[[test]]
name = "chan_test"
path = "tests/chan_test.rs"
[[test]]
name = "itoa_test"
path = "tests/itoa_test.rs"
[[test]]
name = "million_goroutines"
path = "tests/million_goroutines.rs"
[[test]]
name = "path_test"
path = "tests/path_test.rs"
[[test]]
name = "strings_compare_test"
path = "tests/strings_compare_test.rs"
[dependencies.flume]
version = "0.11"
features = ["async"]
default-features = false
[dependencies.goish-macros]
version = "0.4.2"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
"sync",
]