getting this party started
This commit is contained in:
commit
c80ccc9c38
4 changed files with 2512 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/target
|
2495
Cargo.lock
generated
Normal file
2495
Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
13
Cargo.toml
Normal file
13
Cargo.toml
Normal 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
3
src/main.rs
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
fn main() {
|
||||||
|
println!("Hello, world!");
|
||||||
|
}
|
Loading…
Reference in a new issue