-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (28 loc) · 890 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
32
33
34
35
[package]
name = "future-local-storage"
description = "An init-once-per-future cell for thread-local values."
version = "0.1.3"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/alekseysidorov/future-local-storage"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
[dependencies]
include-utils = "0.2.0"
pin-project = "1.1.3"
state = { version = "0.6.0", features = ["tls"] }
[dev-dependencies]
futures-util = { version = "0.3" }
pretty_assertions = "1.4.0"
tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread"] }
[lints.rust]
missing_docs = "warn"
missing_debug_implementations = "warn"
unsafe_code = "deny"
[lints.clippy]
pedantic = "warn"
module_name_repetitions = "allow"
missing_panics_doc = "warn"
[workspace.lints.rustdoc]
broken_intra_doc_links = "deny"