sea-shell 0.0.12

A portable Bash-like shell written in Rust
Documentation
[[bin]]
name = "sea-shell"
required-features = ["cli"]

[dependencies.itertools]
version = "0.10"

[dependencies.reedline]
optional = true
version = "0.2"

[dependencies.tokio]
features = ["macros", "rt-multi-thread"]
version = "1.0"

[features]
cli = ["default-logger", "std", "reedline"]
default-logger = ["wasm-bindgen", "web-sys", "owo-colors", "std"]
std = []

[package]
description = "A portable Bash-like shell written in Rust"
edition = "2021"
homepage = "https://sea-shell.jj.is-a.dev/"
license = "MIT"
name = "sea-shell"
repository = "https://github.com/Sea-Shell-rs/Sea-Shell"
resolver = "2"
version = "0.0.12"

[profile.release]
lto = true
strip = "symbols"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.owo-colors]
optional = true
version = "3.2"

[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
optional = true
version = "0.2"

[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
features = ["Element"]
optional = true
version = "0.3"