agate/Cargo.toml
dependabot[bot] d8a3ec5a3c chore(deps): bump once_cell from 1.13.0 to 1.14.0
Bumps [once_cell](https://github.com/matklad/once_cell) from 1.13.0 to 1.14.0.
- [Release notes](https://github.com/matklad/once_cell/releases)
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md)
- [Commits](https://github.com/matklad/once_cell/compare/v1.13.0...v1.14.0)

---
updated-dependencies:
- dependency-name: once_cell
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-09-12 11:27:23 -07:00

38 lines
1.1 KiB
TOML

[package]
name = "agate"
version = "3.2.4"
authors = ["Matt Brubeck <mbrubeck@limpet.net>", "Johann150 <johann+agate@qwertqwefsday.eu>"]
description = "Very simple server for the Gemini hypertext protocol"
keywords = ["server", "gemini", "hypertext", "internet", "protocol"]
categories = ["network-programming"]
repository = "https://github.com/mbrubeck/agate"
readme = "README.md"
license = "MIT/Apache-2.0"
edition = "2021"
exclude = ["/tools", "/.github", "/Cross.toml", "/content", "/CODE_OF_CONDUCT.md", "/CONTRIBUTING.md", "/CHANGELOG.md", "/tests"]
[dependencies]
configparser = "3.0"
env_logger = { version = "0.9", default-features = false, features = ["atty", "humantime", "termcolor"] }
futures-util = "0.3"
getopts = "0.2.21"
glob = "0.3"
log = "0.4"
mime_guess = "2.0"
once_cell = "1.14"
percent-encoding = "2.2"
rcgen = { version = "0.9.3" }
rustls = "0.20.6"
tokio-rustls = "0.23.4"
tokio = { version = "1.20", features = ["fs", "io-util", "net", "rt-multi-thread", "sync"] }
url = "2.3.0"
webpki = "0.22.0"
[dev-dependencies]
anyhow = "1.0"
gemini-fetch = "0.2.1"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"