aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorMax Audron <audron@cocaine.farm>2020-10-16 21:33:44 +0200
committerMax Audron <audron@cocaine.farm>2020-10-16 21:33:44 +0200
commitf7602e7c75a3542ff05ac30963680ecffdc780cc (patch)
treebbeb9fe5a981e0a9c4cc7198dcac770c61942a81 /Cargo.toml
parentadd example temp (diff)
update paperwork
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 = []