[package] authors = ["Rustin170506"] description = "A web console for tokio" include = ["src/main.rs", "app/.output/public"] edition = "2021" license = "MIT" name = "tokio-console-web" repository = "https://github.com/Rustin170506/tokio-console-web" version = "0.1.1" [package.metadata.wix] eula = false license = false path-guid = "CF8775B9-F794-41B7-ACD7-CAFD7D0550AB" upgrade-guid = "EF6E06AE-4AB9-4FAD-85F5-9DA51A50BBC5" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] axum = "0.7.4" clap = { version = "4.5.3", features = ["derive"] } mime_guess = "2.0.4" rust-embed = { version = "8.3.0", features = ["mime_guess"] } serde = { version = "1.0.197", features = ["derive"] } serde_json = "1.0.114" tokio = { version = "1.36", features = ["full"] } tower = { version = "0.4", features = ["util"] } tower-http = { version = "0.5.2", features = ["fs", "trace"] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } # 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.22.0" # CI backends to support ci = "github" # The installers to generate for each app installers = ["shell", "powershell", "homebrew", "msi"] # A GitHub repo to push Homebrew formulas to tap = "Rustin170506/homebrew-tokio-console-web" # Target platforms to build apps for (Rust target-triple syntax) targets = [ "aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc", ] # 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" # Publish jobs to run in CI publish-jobs = ["homebrew"] # Which actions to run on pull requests pr-run-mode = "upload" # Skip checking whether the specified configuration files are up to date allow-dirty = ["ci"] # Whether to publish prereleases to package managers publish-prereleases = true # Path that installers should place binaries in install-path = "CARGO_HOME" # Whether to install an updater program install-updater = false [dev-dependencies] console-subscriber = { version = "0.4.0", features = ["grpc-web"] } tokio = { version = "1.37", features = ["tracing"] } trycmd = "0.15.0"