[package] name = "scootaloo" version = "0.3.3" authors = ["VC "] edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] serde = { version = "1.0", features = ["derive"] } toml = "^0.5" clap = "^2.33" egg-mode = { git = "https://github.com/egg-mode-rs/egg-mode", rev = "6b81073eba9c3b123ca0e80bdb5ef61d1758f131" } elefren = "^0.22" tokio = { version = "1", features = ["full"]} reqwest = "^0.11" htmlescape = "^0.3" log = "^0.4" simple_logger = "^1.11" [profile.release] opt-level = 's' # Optimize for size. lto = true # Link Time Optimization (LTO) codegen-units = 1 # Set this to 1 to allow for maximum size reduction optimizations: panic = 'abort' # removes the need for this extra unwinding code.