-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
94 lines (85 loc) · 2.38 KB
/
Copy pathCargo.toml
File metadata and controls
94 lines (85 loc) · 2.38 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[package]
name = "trendradar-workspace"
version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
description = "Workspace-level test harness for TrendRadar Rust"
publish = false
[lib]
path = "src/lib.rs"
[workspace]
members = [
"crates/ai",
"crates/domain",
"crates/config",
"crates/schedule",
"crates/analyze",
"crates/storage",
"crates/fetch",
"crates/report",
"crates/mcp",
"crates/notification",
"crates/app",
]
resolver = "2"
[workspace.package]
edition = "2024"
rust-version = "1.94"
license = "GPL-3.0-only"
authors = ["TrendRadar Contributors"]
repository = "https://github.com/sansan0/TrendRadar"
description = "TrendRadar Rust workspace"
readme = "README.md"
keywords = ["trendradar", "news", "rss", "radar"]
categories = ["command-line-utilities", "development-tools"]
[workspace.dependencies]
anyhow = "1.0"
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
comfy-table = "7"
chrono-tz = "0.10"
clap = { version = "4", features = ["derive"] }
criterion = "0.5"
insta = { version = "1.43", features = ["json"] }
mockito = "1.5"
quick-xml = "0.37"
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls", "native-tls"] }
rss = "2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[dev-dependencies]
anyhow.workspace = true
chrono.workspace = true
insta.workspace = true
serde.workspace = true
serde_json.workspace = true
trendradar-analyze = { path = "crates/analyze" }
trendradar-ai = { path = "crates/ai" }
trendradar-app = { path = "crates/app" }
trendradar-config = { path = "crates/config" }
trendradar-domain = { path = "crates/domain" }
trendradar-fetch = { path = "crates/fetch" }
trendradar-mcp = { path = "crates/mcp" }
trendradar-report = { path = "crates/report" }
trendradar-schedule = { path = "crates/schedule" }
trendradar-storage = { path = "crates/storage" }
[workspace.lints.rust]
unsafe_code = "forbid"
missing_docs = "warn"
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
unwrap_used = "deny"
expect_used = "deny"
todo = "deny"
panic = "deny"
[profile.dev]
debug = 1
[profile.release]
lto = "thin"
codegen-units = 1
strip = "debuginfo"