-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
69 lines (61 loc) · 1.91 KB
/
Copy pathCargo.toml
File metadata and controls
69 lines (61 loc) · 1.91 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
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
edition = "2024"
version = "0.1.0"
license = "MIT"
repository = "https://github.com/anomalyco/lepo"
[workspace.lints.rust]
unsafe_code = "deny"
unused_must_use = "deny"
missing_docs = "warn"
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
similar_names = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
too_many_lines = "allow"
cast_possible_truncation = "allow"
cast_lossless = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
cast_possible_wrap = "allow"
struct_excessive_bools = "allow"
module_inception = "allow"
multiple_crate_versions = "allow"
result_large_err = "allow"
single_match_else = "allow"
needless_pass_by_value = "allow"
future_not_send = "allow"
manual_let_else = "allow"
# Leptos view! macro expansions are noisy to clippy
too_many_arguments = "allow"
unused_async = "allow"
ignored_unit_patterns = "allow"
redundant_pub_crate = "allow"
[workspace.dependencies]
# Internal crates
models = { path = "crates/models" }
github-api = { path = "crates/github-api" }
# Shared between crates - pinned to major.minor per AGENTS-RUST §4.1
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2"
chrono = { version = "0.4", default-features = false, features = ["serde", "clock"] }
# wasm / Leptos UI stack (app crate only)
leptos = { version = "0.8", features = ["csr"] }
leptos_router = "0.8"
gloo-net = { version = "0.6", features = ["http"] }
gloo-storage = "0.3"
gloo-timers = { version = "0.3", features = ["futures"] }
tracing = "0.1"
tracing-wasm = "0.2"
console_error_panic_hook = "0.1"
web-sys = { version = "0.3", features = ["Window", "Location", "MediaQueryList", "MediaQueryListEvent"] }
js-sys = "0.3"
futures = "0.3"