mirror of
https://github.com/tlsnotary/tlsn-utils.git
synced 2026-01-08 04:13:59 -05:00
* clippy fixes * fmt fixes * mirgrate to 2024 and fix workspace warning * fix profile * rustfmt --------- Co-authored-by: sinu <65924192+sinui0@users.noreply.github.com>
23 lines
518 B
TOML
23 lines
518 B
TOML
[package]
|
|
name = "spansy"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "Parsing with span information"
|
|
repository = "https://github.com/tlsnotary/tlsn-utils"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[features]
|
|
default = []
|
|
serde = ["dep:serde", "bytes/serde", "rangeset/serde"]
|
|
|
|
[dependencies]
|
|
rangeset = { version = "0.2" }
|
|
|
|
bytes.workspace = true
|
|
serde = { workspace = true, features = ["derive"], optional = true }
|
|
thiserror.workspace = true
|
|
|
|
httparse = "1.8"
|
|
pest = { version = "2.7" }
|
|
pest_derive = { version = "2.7" }
|