-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
31 lines (27 loc) · 873 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "actix-request-identifier"
authors = ["Valentin Brandl <[email protected]>"]
edition = "2018"
description = "Middlerware for actix-web to associate an ID with each request."
documentation = "https://docs.rs/actix-request-identifier"
exclude = [
".github/*"
]
license = "Apache-2.0 OR MIT"
homepage = "https://github.com/vbrandl/actix-request-identifier"
repository = "https://github.com/vbrandl/actix-request-identifier"
readme = "README.md"
version = "4.2.0"
[dependencies]
actix-web = { version = "4.1.0", default-features = false }
futures = "0.3.4"
uuid = { version = "1.8.0", default-features = false, optional = true }
[dev-dependencies]
actix-web = "4.1.0"
bytes = "1.2.1"
[features]
default = [ "uuid-generator" ]
uuid-generator = [ "uuid/v4" ]
uuid-v7-generator = [ "uuid/v7", "uuid/std" ]
[package.metadata.docs.rs]
all-features = true