From 1c06ce7246990411ea28ca7f3c908235b92d4824 Mon Sep 17 00:00:00 2001 From: Quaternion Date: Fri, 26 May 2023 10:09:55 -0400 Subject: [PATCH] Add features to Cargo.toml --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 19c5fdc..a7029fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,6 +4,10 @@ version = "0.1.0" license = "AGPL-3" edition = "2021" +[features] +backend = ["poem", "sqlx"] +client = [] + [dependencies] tokio = {version = "1.28.1", features = ["rt", "macros", "rt-multi-thread", "full"]} serde = {version = "1.0.162", features = ["derive"]}