From 446e7421e586d0233c7e93c42b61e7c97cc1bd6b Mon Sep 17 00:00:00 2001 From: Jacob Rothstein Date: Sat, 5 Jun 2021 20:13:28 -0700 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=F0=9F=A7=B9testing=20cargo.toml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- testing/Cargo.toml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/testing/Cargo.toml b/testing/Cargo.toml index ef01c2fdf5..bd67b83694 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -3,6 +3,12 @@ name = "trillium-testing" version = "0.1.0" authors = ["Jacob Rothstein "] edition = "2018" +description = "testing library for trillium applications" +license = "MIT OR Apache-2.0" +repository = "https://github.com/trillium-rs/trillium" +readme = "../README.md" +keywords = ["trillium", "framework", "testing"] +categories = ["web-programming::http-server", "web-programming"] [dependencies] async-dup = "1.2.2" @@ -10,10 +16,10 @@ async-global-executor = "2.0.2" async-io = "1.4.1" futures-lite = "1.12.0" portpicker = "0.1.0" -trillium = { path = "../trillium" } -trillium-http = { path = "../http" } -trillium-server-common = { path = "../server-common" } -trillium-smol = { path = "../smol" } +trillium = { path = "../trillium", version = "^0.1.0" } +trillium-http = { path = "../http", version = "^0.1.0" } +trillium-server-common = { path = "../server-common", version = "^0.1.0" } +trillium-smol = { path = "../smol", version = "^0.1.0" } [dev-dependencies] trillium-logger = { path = "../logger" }