we (web engine): Experimental web browser project to understand the limits of Claude
at http-parser 20 lines 414 B view raw
1[package] 2name = "we-render" 3version = "0.1.0" 4edition.workspace = true 5 6[lib] 7name = "we_render" 8path = "src/lib.rs" 9 10[dependencies] 11we-platform = { path = "../platform" } 12we-layout = { path = "../layout" } 13we-dom = { path = "../dom" } 14we-css = { path = "../css" } 15we-style = { path = "../style" } 16we-text = { path = "../text" } 17we-image = { path = "../image" } 18 19[dev-dependencies] 20we-html = { path = "../html" }