aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml7
1 files changed, 5 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index fd66a39..3052afc 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,11 @@
[package]
name = "libquassel"
+description = "Native rust implementation of the Quassel protocol and library functions"
version = "0.1.0"
authors = ["Max Audron <audron@cocaine.farm>"]
+license = "ISC"
+homepage = "https://gitlab.com/cocainefarm/libquassel"
+repository = "https://gitlab.com/cocainefarm/libquassel"
edition = "2018"
autobins = true
@@ -22,11 +26,10 @@ tokio-tls = { version = "0.3", optional = true }
native-tls = { version = "0.2", optional = true }
futures-util = { version = "0.3", features = ["std"], optional = true }
futures = { version = "0.3", optional = true }
-pretty_env_logger = { version = "0.4", optional = true }
[features]
framing = ["tokio", "tokio-util", "flate2"]
-client = ["tokio", "tokio-util", "tokio-tls", "native-tls", "futures", "futures-util", "framing", "pretty_env_logger"]
+client = ["tokio", "tokio-util", "tokio-tls", "native-tls", "futures", "futures-util", "framing"]
default = []