From 84546078593ae599c59342c2e8c6087c86b3ea4b Mon Sep 17 00:00:00 2001 From: Edward Shen Date: Sun, 31 Oct 2021 16:04:31 -0700 Subject: [PATCH] Add metadata for omegaupload-common --- common/Cargo.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/common/Cargo.toml b/common/Cargo.toml index 18f5b80..85589b1 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -2,15 +2,18 @@ name = "omegaupload-common" version = "0.1.0" edition = "2021" +description = "Common library for OmegaUpload" +repository = "https://git.eddie.sh/edward/omegaupload" +license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] base64 = "0.13" -bytes = { version = "*", features = ["serde"] } +bytes = { version = "1", features = ["serde"] } chacha20poly1305 = { version = "0.9", features = ["stream"] } chrono = { version = "0.4", features = ["serde"] } -headers = "*" +headers = "0.3" lazy_static = "1" rand = "0.8" secrecy = "0.8"