feat(mm): Initial commit with a basic image viewer
Some checks failed
build / checks-matrix (push) Successful in 19m22s
build / codecov (push) Failing after 24m19s
docs / docs (push) Failing after 33m0s
build / checks-build (push) Has been cancelled

This commit is contained in:
uttarayan21
2025-10-07 03:25:54 +05:30
commit f6e431b6ac
13 changed files with 7927 additions and 0 deletions

21
Cargo.toml Normal file
View File

@@ -0,0 +1,21 @@
[package]
name = "hello"
version = "0.1.0"
edition = "2024"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5", features = ["derive"] }
clap_complete = "4.5"
error-stack = "0.5"
thiserror = "2.0"
tokio = "1.43.1"
tracing = "0.1"
tracing-subscriber = "0.3"
gpui = { git = "https://github.com/zed-industries/zed", default-features = false, features = ["wayland"] }
nalgebra = "0.34.1"
wayland-sys = { version = "0.31.7", default-features = false }
wayland-backend = { version = "0.3.11", default-features = false }
ignore = { version = "0.4.23", features = ["simd-accel"] }