20 lines
520 B
TOML
20 lines
520 B
TOML
[package]
|
|
name = "zed-bridge"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Local HTTP bridge to open remote site files in Zed editor"
|
|
authors = ["Scott Penrose"]
|
|
license = "MIT"
|
|
repository = "https://github.com/scottp/zed-bridge"
|
|
readme = "README.md"
|
|
keywords = ["zed", "editor", "http", "localhost", "bridge"]
|
|
categories = ["command-line-utilities", "web-programming::http-server"]
|
|
|
|
[[bin]]
|
|
name = "zed-bridge"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|