[package] name = "slippy" description = "🖼 the easiest way to make a presentation" version = "0.1.0" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/axodotdev/slippy" [dependencies] axoasset = "0.0.1" axohtml = "0.4.1" clap = { version = "4.1.4", features = ["derive"] } console = "0.15.5" css-minify = "0.3.1" fs_extra = "1.3.0" markdown = "1.0.0-alpha.7" thiserror = "1.0.39" [dev-dependencies] assert_cmd = "2.0.8" # The profile that 'cargo dist' will build with [profile.dist] inherits = "release" lto = "thin" # Config for 'cargo dist' [workspace.metadata.dist] # The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax) cargo-dist-version = "0.0.7" # The preferred Rust toolchain to use in CI (rustup toolchain syntax) rust-toolchain-version = "1.67.1" # CI backends to support (see 'cargo dist generate-ci') ci = ["github"] # The installers to generate for each app installers = ["shell", "powershell", "npm"] # Target platforms to build apps for (Rust target-triple syntax) targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"] # The archive format to use for windows builds (defaults .zip) windows-archive = ".tar.gz" # The archive format to use for non-windows builds (defaults .tar.xz) unix-archive = ".tar.gz"