Skip to content
Snippets Groups Projects
This project manages its dependencies using Cargo. Learn more
Cargo.toml 922 B
[package]
name = "yamm"
version = "0.1.0"
edition = "2021"
authors = ["Volkor <me@volkor.me>"]
build = "build.rs"

[dependencies]
fern = "0.7.1"
log = "0.4.25"
meshtastic = "0.1.6"
tokio = "1.42.0"
rusqlite = { version = "0.32.1", features = ["bundled", "backup"] }
rusqlite_migration = "1.3.1"
lazy_static = "1.5.0"
figment =  {version = "0.10.19", features = ["toml", "env"]}
serde = "1.0.217"
bincode = "1.3.3"
chrono-humanize = "0.2.3"

# gui
eframe = { version = "0.31.0", features = ["wgpu"] }
egui = "0.31.0"
egui_extras = { version = "0.31.0", features = ["all_loaders"] }
egui_tiles = "0.12.0"
egui_logger = { git = "https://github.com/rnd-ash/egui_logger", branch = "main" }
walkers = "0.34.0"
image = { version = "0.25", features = ["jpeg", "png", "webp"] }
chrono = "0.4.39"
longitude = "0.2.1"
colog = "1.3.0"

[build-dependencies]
built = { version = "0.7.6", features = ["git2", "chrono"] }
git2 = "0.20.0"