we (web engine): Experimental web browser project to understand the limits of Claude
1[package]
2name = "we-browser"
3version = "0.1.0"
4edition.workspace = true
5
6[[bin]]
7name = "browser"
8path = "src/main.rs"
9
10[lib]
11name = "we_browser"
12path = "src/lib.rs"
13
14[dependencies]
15we-platform = { path = "../platform" }
16we-net = { path = "../net" }
17we-html = { path = "../html" }
18we-css = { path = "../css" }
19we-dom = { path = "../dom" }
20we-style = { path = "../style" }
21we-layout = { path = "../layout" }
22we-text = { path = "../text" }
23we-render = { path = "../render" }
24we-js = { path = "../js" }
25we-url = { path = "../url" }
26we-encoding = { path = "../encoding" }
27we-image = { path = "../image" }