30 lines
956 B
TOML
30 lines
956 B
TOML
[package]
|
|
name = "application_catnip"
|
|
version = "0.0.0-develop"
|
|
authors = ["i0uring"]
|
|
license = "Apache-2.0"
|
|
edition = "2024"
|
|
rust-version = "1.91"
|
|
publish = false
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = ["image"]
|
|
|
|
[dependencies]
|
|
egui = "0.32"
|
|
eframe = { version = "0.32", default-features = false, features = [
|
|
"accesskit", "default_fonts",
|
|
"glow", "persistence",
|
|
"wayland", "wgpu"
|
|
] }
|
|
rfd = "0.15"
|
|
env_logger = { version = "0.11", default-features = false, features = [
|
|
"auto-color",
|
|
"humantime",
|
|
] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
egui_code_editor = { git = "https://github.com/i0uring/app_catnip_editor.git", version = "0.4.0-develop", rev = "e96154f" }
|
|
egui-modal = { git = "https://github.com/mkrueger/egui-modal.git", branch = "main" }
|
|
egui_extras = {version = "0.32", default-features = false, features = ["default", "all_loaders"]}
|
|
image = { version = "0.25", default-features = false, features = ["jpeg", "png"] }
|