-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (48 loc) · 1.49 KB
/
Cargo.toml
File metadata and controls
51 lines (48 loc) · 1.49 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
[workspace]
members = ["lib", "cli", "json_lib", "sqlite_lib", "test_util", "proc_macros"]
resolver = "3"
# Some very strict lints.
# These lints can be used from the cli as well:
#
# cargo clippy -- -D clippy::pedantic -D clippy::nursery -D clippy::unwrap_used -D clippy::enum_glob_use -D unreachable_patterns -D unreachable_code -D missing_docs -D unsafe_code
[workspace.lints.rust]
unsafe_code = "forbid"
missing_docs = "warn"
unreachable_code = "warn"
unreachable_patterns = "warn"
[workspace.lints.clippy]
module_name_repetitions = "allow"
enum_glob_use = { level = "deny", priority = -1 }
pedantic= { level = "deny", priority = -2 }
nursery = { level = "deny", priority = 1 }
unwrap_used = { level = "deny", priority = 2 }
[workspace.dependencies]
chrono = "0.4"
dfraw_json_parser = { version = "0", path = "json_lib" }
dfraw_parser = { version = "0", path = "lib" }
dfraw_parser_proc_macros = { version = "0", path = "proc_macros" }
dfraw_parser_sqlite_lib = { version = "0", path = "sqlite_lib" }
dfraw_parser_test_util = {version = "0", path = "test_util"}
directories = "6.0.0"
encoding_rs = "0.8.34"
encoding_rs_io = "0.1"
itertools = "0.14.0"
lazy-regex = "3.1.0"
lexopt = "0.3"
once_cell = "1.19.0"
phf = "0.13.1"
quick-xml = "0.38.4"
rusqlite = "0.38.0"
serde = "1.0.228"
serde_json = "1.0.148"
slug = "0.1.5"
specta = "2.0.0-rc.22"
specta-typescript = "0.0.9"
strum = "0.27"
strum_macros = "0.27"
thiserror = "2"
tracing = "0.1.43"
tracing-subscriber = "0.3.18"
typetag = "0.2"
uuid = "1.19.0"
walkdir = "2.5.0"