[package]
edition = "2024"
name = "sutures"
version = "1.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Protocol-agnostic API abstraction gateway"
readme = false
license = "Apache-2.0"
repository = "https://github.com/bharxhav/sutures"
resolver = "2"
[features]
default = ["derive"]
derive = ["dep:sutures-derive"]
[lib]
name = "sutures"
path = "src/lib.rs"
[[test]]
name = "compile_fail"
path = "tests/compile_fail.rs"
[[test]]
name = "derive_seam"
path = "tests/derive_seam.rs"
[[test]]
name = "knit_unknit"
path = "tests/knit_unknit.rs"
[[test]]
name = "stitch_constants_edge"
path = "tests/stitch_constants_edge.rs"
[[test]]
name = "stitch_request_direct"
path = "tests/stitch_request_direct.rs"
[[test]]
name = "stitch_request_iterate"
path = "tests/stitch_request_iterate.rs"
[[test]]
name = "stitch_request_pattern"
path = "tests/stitch_request_pattern.rs"
[[test]]
name = "stitch_response_direct"
path = "tests/stitch_response_direct.rs"
[[test]]
name = "stitch_response_iterate"
path = "tests/stitch_response_iterate.rs"
[[test]]
name = "stitch_response_pattern"
path = "tests/stitch_response_pattern.rs"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sutures-derive]
version = "1.0.1"
optional = true
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.trybuild]
version = "1"