ssh-browser 0.1.0

Open files on an SSH host as a real browser origin.
Documentation
[package]
name = "ssh-browser"
description = "Open files on an SSH host as a real browser origin."
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
readme = "../../README.md"
keywords = ["ssh", "sftp", "browser", "proxy", "annotation"]
# What it does, and what it is once installed. Both are true, and a daemon nobody starts
# from a shell would be neither.
categories = ["network-programming", "command-line-utilities"]

[dependencies]
anyhow = "1"
bytes = "1"
getrandom = "0.3"
http-body-util = "0.1"
hyper = { version = "1", features = ["server", "http1"] }
hyper-util = { version = "0.1", features = ["tokio"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "process", "io-util", "time", "sync", "net"] }
toml = { version = "1", default-features = false, features = ["parse", "serde"] }

# `measure-roundtrips` is an example, not a binary, and the difference matters once this is
# published: `cargo install` puts every `[[bin]]` on the reader's PATH, and a command called
# `measure-roundtrips` means nothing outside this project and could collide with anything.
# It is also, literally, a program that uses this library — which is what an example is.
# Cargo finds it under `examples/`, so there is nothing to declare here.