-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (24 loc) · 754 Bytes
/
Cargo.toml
File metadata and controls
31 lines (24 loc) · 754 Bytes
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
[workspace]
resolver = "3"
members = ["crates/*", "src-tauri"]
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Fractal-Tess"]
license = "MIT"
repository = "https://github.com/Fractal-Tess/pagelens"
[workspace.dependencies]
# Internal crates
pagelens-core = { path = "crates/pagelens-core" }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Error handling
thiserror = "2"
# Async
tokio = { version = "1", features = ["full"] }
# Browser automation
chromiumoxide = { version = "0.7", features = ["tokio-runtime"] }
# Future crates (noted for later):
# pagelens-rules — pluggable rule/check definitions
# pagelens-report — shared reporting & output formatting (JSON, HTML, scored summaries)