mirror of
https://github.com/rm-dr/datapath.git
synced 2025-12-07 20:04:13 -08:00
86 lines
2.0 KiB
TOML
86 lines
2.0 KiB
TOML
[workspace]
|
|
members = ["crates/*"]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
rust-version = "1.90.0"
|
|
edition = "2024"
|
|
license = "GPL-3.0"
|
|
repository = "https://github.com/rm-dr/datapath"
|
|
readme = "README.md"
|
|
authors = ["rm-dr"]
|
|
|
|
# Don't forget to bump datapath-macro below!
|
|
version = "0.0.5"
|
|
|
|
[workspace.lints.rust]
|
|
unused_import_braces = "deny"
|
|
unit_bindings = "deny"
|
|
single_use_lifetimes = "deny"
|
|
non_ascii_idents = "deny"
|
|
macro_use_extern_crate = "deny"
|
|
elided_lifetimes_in_paths = "deny"
|
|
absolute_paths_not_starting_with_crate = "deny"
|
|
explicit_outlives_requirements = "warn"
|
|
unused_crate_dependencies = "warn"
|
|
redundant_lifetimes = "warn"
|
|
missing_docs = "allow"
|
|
|
|
[workspace.lints.clippy]
|
|
todo = "deny"
|
|
uninlined_format_args = "allow"
|
|
result_large_err = "allow"
|
|
too_many_arguments = "allow"
|
|
upper_case_acronyms = "deny"
|
|
needless_return = "allow"
|
|
new_without_default = "allow"
|
|
tabs_in_doc_comments = "allow"
|
|
dbg_macro = "deny"
|
|
allow_attributes = "deny"
|
|
create_dir = "deny"
|
|
filetype_is_file = "deny"
|
|
integer_division = "allow"
|
|
lossy_float_literal = "deny"
|
|
map_err_ignore = "deny"
|
|
mutex_atomic = "deny"
|
|
needless_raw_strings = "deny"
|
|
str_to_string = "deny"
|
|
string_add = "deny"
|
|
use_debug = "allow"
|
|
verbose_file_reads = "deny"
|
|
large_types_passed_by_value = "deny"
|
|
wildcard_dependencies = "deny"
|
|
negative_feature_names = "deny"
|
|
redundant_feature_names = "deny"
|
|
multiple_crate_versions = "deny"
|
|
missing_safety_doc = "warn"
|
|
identity_op = "allow"
|
|
print_stderr = "deny"
|
|
print_stdout = "deny"
|
|
comparison_chain = "allow"
|
|
unimplemented = "deny"
|
|
unwrap_used = "warn"
|
|
expect_used = "warn"
|
|
type_complexity = "allow"
|
|
cargo_common_metadata = "deny"
|
|
|
|
|
|
#
|
|
# MARK: dependencies
|
|
#
|
|
|
|
[workspace.dependencies]
|
|
datapath-macro = { path = "crates/datapath-macro", version = "0.0.5" }
|
|
datapath = { path = "crates/datapath" }
|
|
|
|
chrono = "0.4.42"
|
|
itertools = "0.14.0"
|
|
proc-macro2 = "1.0.103"
|
|
quote = "1.0.42"
|
|
regex = "1.12.2"
|
|
syn = "2.0.111"
|
|
tracing = "0.1"
|
|
trie-rs = "0.4.2"
|
|
uuid = "1.19.0"
|
|
tokio = { version = "1.48.0", features = ["sync"] }
|