[package] name = "ju" version = "0.2.3" authors = ["Clivern "] edition = "2021" description = "A Command Line Tool for Fast System Navigation in Rust" license = "MIT" repository = "https://github.com/Clivern/Jump" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] clap = "4.1.4" home = "0.5.4" inquire = "0.5.3" serde = "1.0.152" serde_json = "1.0.91" serde_with = "2.2.0" [profile.release] opt-level = "z" # Optimize for size. lto = true # Enable Link Time Optimization codegen-units = 1 # Reduce number of codegen units to increase optimizations. panic = "abort" # Abort on panic strip = true # Automatically strip symbols from the binary.