getting this party started

This commit is contained in:
Joe Ardent 2022-10-12 14:10:28 -07:00
commit c80ccc9c38
4 changed files with 2512 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

2495
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

13
Cargo.toml Normal file
View file

@ -0,0 +1,13 @@
[package]
name = "katabastird"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.0.14", features = ["derive", "env", "unicode", "suggestions", "usage"] }
eframe = { version = "0.19.0", features = ["wgpu"] }
egui = { version = "0.19.0", features = ["bytemuck"] }
naga = { version = "0.10.0", features = ["spv-out", "wgsl-out", "wgsl-in"] }
wgpu = { version = "0.14.0", features = ["naga", "spirv"] }

3
src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}