-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (59 loc) · 1.68 KB
/
Copy pathCargo.toml
File metadata and controls
70 lines (59 loc) · 1.68 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[workspace]
resolver = "3"
members = ["osv-analyzer",
"osv-db",
"osv-types"
]
[workspace.package]
edition = "2024"
license = "MIT OR Apache-2.0"
authors = [
"Oleksii Pozhylenkov (Mr-Leshiy) <leshiy12345678@gmail.com>"
]
repository = "https://github.com/Mr-Leshiy/osv-rs"
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(track_caller)'] }
warnings = "deny"
missing_docs = "allow"
let_underscore_drop = "deny"
non_ascii_idents = "deny"
single_use_lifetimes = "deny"
trivial_casts = "deny"
trivial_numeric_casts = "deny"
[workspace.lints.rustdoc]
broken_intra_doc_links = "deny"
invalid_codeblock_attributes = "deny"
invalid_html_tags = "deny"
invalid_rust_codeblocks = "deny"
bare_urls = "deny"
unescaped_backticks = "deny"
[workspace.lints.clippy]
pedantic = { level = "deny", priority = -1 }
unwrap_used = "deny"
expect_used = "deny"
todo = "deny"
unimplemented = "deny"
exit = "deny"
get_unwrap = "deny"
index_refutable_slice = "deny"
indexing_slicing = "deny"
match_wild_err_arm = "deny"
missing_panics_doc = "deny"
panic = "deny"
string_slice = "deny"
unchecked_time_subtraction = "deny"
unreachable = "deny"
missing_docs_in_private_items = "allow"
arithmetic_side_effects = "deny"
missing_errors_doc = "allow"
[workspace.dependencies]
osv-types = { path = "osv-types", version="0.1.1" }
thiserror = "2"
tokio = { version = "1.48.0", features = ["fs", "macros", "sync", "rt-multi-thread"] }
reqwest = "0.13.0"
strum = { version = "0.26", features = ["derive"] }
serde = { version = "1.0.0", features = ["derive"] }
serde_json = "1.0.0"
jsonschema = { version = "0.46.0", default-features = false }
chrono = { version = "0.4.0", features = ["serde"] }
test-case = "3.3.1"