-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
53 lines (44 loc) · 1.12 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "forte"
version = "1.0.0-alpha.1"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A low-overhead thread-pool with support for non-static async closures"
repository = "https://github.com/NthTensor/Forte"
[workspace]
resolver = "2"
members = [
"ci"
]
[dependencies]
async-task = "4.7.1"
crossbeam-utils = "0.8.21"
crossbeam-queue = "0.3.12"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
[lints.clippy]
doc_markdown = "warn"
manual_let_else = "warn"
match_same_arms = "warn"
redundant_closure_for_method_calls = "warn"
redundant_else = "warn"
semicolon_if_nothing_returned = "warn"
undocumented_unsafe_blocks = "warn"
unwrap_or_default = "warn"
ptr_as_ptr = "warn"
ptr_cast_constness = "warn"
ref_as_ptr = "warn"
std_instead_of_core = "warn"
std_instead_of_alloc = "warn"
alloc_instead_of_core = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_op_in_unsafe_fn = "warn"
unused_qualifications = "warn"
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] }
# Add loom as a dependency for tests
[target.'cfg(loom)'.dependencies]
loom = "0.7"
[[test]]
name = "integration"
path = "tests/tests.rs"