Remove all python stuff, simplify gitignore, update CREDITS, and tons of Rust rewriting basically. UI is done, but i might improve it by adding more functionality once im done with the rewrite. HTML Parser is done, and i started rewriting HTTPConnection. Just to note, this code doesnt work yet but i wanted to commit so its in the cloud.

This commit is contained in:
csd4ni3l
2026-02-22 16:19:23 +01:00
parent fc4fc66b30
commit 0b2e9c12ad
23 changed files with 6955 additions and 2316 deletions

52
Cargo.toml Normal file
View File

@@ -0,0 +1,52 @@
[package]
name = "csd4ni3l-browser"
version = "0.1.0"
edition = "2024"
[dependencies]
bevy_egui = "0.38.1"
native-tls = "0.2.18"
rand = "0.9.2"
rfd = "0.16.0"
serde = "1.0.228"
serde_json = "1.0.146"
[dependencies.bevy]
version = "0.17.3"
default-features = false
features = [
"bevy_log",
"bevy_window",
"bevy_winit",
"bevy_render",
"bevy_core_pipeline",
"bevy_sprite",
"bevy_text",
"bevy_ui",
"bevy_asset",
"bevy_picking",
"multi_threaded",
]
[profile.dev.package."*"]
opt-level = 2
debug = false
[target.'cfg(target_os = "linux")'.dependencies.bevy]
default-features = false
version = "0.17.3"
features = [
"bevy_log",
"bevy_window",
"bevy_winit",
"bevy_render",
"bevy_core_pipeline",
"bevy_sprite",
"bevy_text",
"bevy_ui",
"multi_threaded",
"bevy_asset",
"bevy_picking",
"wayland",
"x11"
]