cargo new

This commit is contained in:
leca 2024-03-08 13:51:55 +03:00
parent 15aa3a2755
commit 5fd9e1e10b
2 changed files with 12 additions and 0 deletions

9
Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
[package]
name = "learn-hieroglyph"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
gtk = { version = "0.8.1", package = "gtk4", features = ["v4_12"] }

3
src/main.rs Normal file
View File

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