This commit is contained in:
Robin Appelman 2024-04-03 19:06:05 +02:00
commit d36f5ae579
4 changed files with 28 additions and 4 deletions

1
.gitignore vendored
View file

@ -1,2 +1 @@
/target /target
Cargo.lock

25
Cargo.lock generated Normal file
View file

@ -0,0 +1,25 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "rfc7239"
version = "0.1.1"
dependencies = [
"uncased",
]
[[package]]
name = "uncased"
version = "0.9.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1b88fcfe09e89d3866a5c11019378088af2d24c3fbd4f0543f96b479ec90697"
dependencies = [
"version_check",
]
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "rfc7239" name = "rfc7239"
version = "0.1.0" version = "0.1.1"
authors = ["Robin Appelman <robin@icewind.nl>"] authors = ["Robin Appelman <robin@icewind.nl>"]
edition = "2018" edition = "2018"
description = "Parser for rfc7239 formatted Forwarded headers" description = "Parser for rfc7239 formatted Forwarded headers"
@ -9,4 +9,4 @@ repository = "https://github.com/icewind1991/rfc7239"
documentation = "https://docs.rs/rfc7239" documentation = "https://docs.rs/rfc7239"
[dependencies] [dependencies]
uncased = "0.9.3" uncased = "0.9.10"