89 lines
2.9 KiB
TOML
89 lines
2.9 KiB
TOML
[package]
|
|
name = "sync_server"
|
|
rust-version = "1.89.0"
|
|
authors = ["Andras Schmelczer <andras@schmelczer.dev>"]
|
|
edition = "2024"
|
|
license = "MIT"
|
|
repository = "https://github.com/schmelczer/vault-link"
|
|
version = "0.6.4"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0.219", default-features = false, features = ["derive"] }
|
|
thiserror = { version = "2.0.12", default-features = false }
|
|
tokio = { version = "1.47.1", features = ["full"]}
|
|
uuid = { version = "1.16.0", features = ["v4", "serde"] }
|
|
log = { version = "0.4.27" }
|
|
anyhow = { version = "1.0.98", features = ["backtrace"] }
|
|
axum = { version = "0.7.4", features = ["ws", "macros", "tracing", "multipart"]}
|
|
axum-extra = { version = "0.9.6", features = ["typed-header"] }
|
|
axum_typed_multipart = "0.11.0"
|
|
tower-http = { version = "0.6.1", features = ["cors", "trace", "limit", "timeout"] }
|
|
tracing = "0.1.41"
|
|
tracing-subscriber = { version = "0.3.19", features = ["fmt", "env-filter"]}
|
|
sqlx = { version = "0.8.6", features = ["sqlite", "runtime-tokio", "uuid", "chrono"] }
|
|
chrono = { version = "0.4.41", features = ["serde"] }
|
|
rand = "0.9.0"
|
|
sanitize-filename = "0.6.0"
|
|
regex = "1.11.1"
|
|
clap = { version = "4.5.38", features = ["derive"] }
|
|
futures = "0.3.31"
|
|
serde_yaml = "0.9.34"
|
|
serde_json = "1.0.140"
|
|
clap-verbosity-flag = "3.0.3"
|
|
bimap = "0.6.3"
|
|
ts-rs = { version = "10.1", features = ["uuid-impl", "chrono-impl"] }
|
|
serde_with = "3.12.0"
|
|
base64 = "0.22.1"
|
|
reconcile-text = "0.5.0"
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
lto = true
|
|
opt-level = 3
|
|
strip="debuginfo" # Keep some info for better panics
|
|
|
|
[lints.rust]
|
|
unsafe_code = "forbid"
|
|
rust_2018_idioms = { level = "warn", priority = -1 }
|
|
missing_debug_implementations = "warn"
|
|
|
|
[lints.clippy]
|
|
await_holding_lock = "warn"
|
|
dbg_macro = "warn"
|
|
empty_enum = "warn"
|
|
enum_glob_use = "warn"
|
|
exit = "warn"
|
|
filter_map_next = "warn"
|
|
fn_params_excessive_bools = "warn"
|
|
if_let_mutex = "warn"
|
|
imprecise_flops = "warn"
|
|
inefficient_to_string = "warn"
|
|
linkedlist = "warn"
|
|
lossy_float_literal = "warn"
|
|
macro_use_imports = "warn"
|
|
match_wildcard_for_single_variants = "warn"
|
|
mem_forget = "warn"
|
|
needless_borrow = "warn"
|
|
needless_continue = "warn"
|
|
option_option = "warn"
|
|
rest_pat_in_fully_bound_structs = "warn"
|
|
str_to_string = "warn"
|
|
suboptimal_flops = "warn"
|
|
todo = "warn"
|
|
uninlined_format_args = "warn"
|
|
unnested_or_patterns = "warn"
|
|
unused_self = "warn"
|
|
verbose_file_reads = "warn"
|
|
|
|
large_stack_arrays = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/13774
|
|
|
|
# Silly lints
|
|
implicit_return = { level = "allow", priority = 1 }
|
|
question_mark_used = { level = "allow", priority = 1 }
|
|
struct_field_names = { level = "allow", priority = 1 }
|
|
single_char_lifetime_names = { level = "allow", priority = 1 }
|
|
single_call_fn = { level = "allow", priority = 1 }
|
|
similar_names = { level = "allow", priority = 1 }
|
|
missing_docs_in_private_items = { level = "allow", priority = 1 }
|
|
|
|
pedantic = { level = "warn", priority = 0 }
|