Add missing metadata to Cargo.toml
This commit is contained in:
parent
6835e0d9d2
commit
4fcdba52cd
|
@ -2,7 +2,7 @@
|
||||||
// SPDX-License-Identifier: CC0-1.0
|
// SPDX-License-Identifier: CC0-1.0
|
||||||
{
|
{
|
||||||
"recommendations": [
|
"recommendations": [
|
||||||
"bungcip.better-toml",
|
"tamasfe.even-better-toml",
|
||||||
"ritwickdey.LiveServer",
|
"ritwickdey.LiveServer",
|
||||||
"rust-lang.rust-analyzer",
|
"rust-lang.rust-analyzer",
|
||||||
"serayuzgur.crates",
|
"serayuzgur.crates",
|
||||||
|
|
11
Cargo.toml
11
Cargo.toml
|
@ -4,10 +4,19 @@
|
||||||
[package]
|
[package]
|
||||||
name = "serves3"
|
name = "serves3"
|
||||||
version = "1.0.0"
|
version = "1.0.0"
|
||||||
edition = "2021"
|
|
||||||
authors = ["Matteo Settenvini <matteo.settenvini@montecristosoftware.eu>"]
|
authors = ["Matteo Settenvini <matteo.settenvini@montecristosoftware.eu>"]
|
||||||
|
description = "A very simple proxy to browse files from private S3 buckets"
|
||||||
license = "EUPL-1.2"
|
license = "EUPL-1.2"
|
||||||
|
|
||||||
|
homepage = "https://git.montecristosoftware.eu/matteo/serves3"
|
||||||
|
repository = "https://git.montecristosoftware.eu/matteo/serves3.git"
|
||||||
|
readme = "README.md"
|
||||||
|
keywords = ["s3", "proxy", "bucket"]
|
||||||
|
categories = ["command-line-utilities", "web-programming::http-server"]
|
||||||
|
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|
Loading…
Reference in New Issue