we (web engine): Experimental web browser project to understand the limits of Claude
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 30 lines 701 B view raw
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-crypto = { path = "../crypto" } 20we-dom = { path = "../dom" } 21we-style = { path = "../style" } 22we-layout = { path = "../layout" } 23we-text = { path = "../text" } 24we-render = { path = "../render" } 25we-js = { path = "../js" } 26we-url = { path = "../url" } 27we-encoding = { path = "../encoding" } 28we-image = { path = "../image" } 29we-svg = { path = "../svg" } 30we-memory = { path = "../memory" }