httplz/Cargo.toml
2024-10-18 00:29:46 -04:00

24 lines
443 B
TOML

[package]
name = "httplz"
version = "0.0.0"
edition = "2021"
license-file = ".gitignore"
description = "A sans-io, no-std HTTP implementation"
[workspace]
members = [
"crates/fetchplz",
"crates/httplzx"
]
[workspace.dependencies]
httplz = { path = ".", features = ["std"] }
httplzx = { path = "./crates/httplzx" }
fetchplz = { path = "./crates/fetchplz" }
[features]
std = []
[dev-dependencies]
httplzx = { path = "./crates/httplzx" }