2023-08-01 20:11:42 +00:00
|
|
|
[package]
|
2023-08-03 20:40:10 +00:00
|
|
|
name = "cuttle"
|
2023-08-01 20:11:42 +00:00
|
|
|
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.3.19", features = ["derive", "env"] }
|
|
|
|
eframe = { version = "0.22", default-features = false, features = ["default_fonts", "wgpu", "tts", "accesskit"] }
|
|
|
|
egui_extras = { version = "0.22", default-features = false, features = ["chrono", "image"] }
|
|
|
|
env_logger = "*"
|
|
|
|
fast_qr = { version = "0.9", default-features = false, features = ["image"] }
|
2023-08-03 20:40:10 +00:00
|
|
|
png = "0.17.6" # pinning this to resolve conflict between eframe and fast_qr with the image crate
|
|
|
|
rand = { version = "0.8", default-features = false, features = ["std"] }
|
2023-08-01 20:11:42 +00:00
|
|
|
raptorq = "1.7"
|
2023-08-02 23:42:31 +00:00
|
|
|
rkyv = { version = "0.7.42", features = ["validation"] }
|