17 lines
345 B
TOML
17 lines
345 B
TOML
[package]
|
|
name = "httplzx"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
license-file = "Cargo.toml"
|
|
description = "Extensions for httplz"
|
|
|
|
[dependencies]
|
|
httplz = { path = "../..", version = "0.0.0" }
|
|
|
|
http = { version = "*", optional = true }
|
|
|
|
[features]
|
|
default = ["utils", "compat-http"]
|
|
utils = ["utils-buf"]
|
|
utils-buf = []
|
|
compat-http = ["dep:http"] |