aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml28
1 files changed, 28 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..8cae613
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,28 @@
+[package]
+name = "records"
+version = "0.1.0"
+authors = ["Fuwn <[email protected]>"]
+edition = "2018"
+readme = "README.md"
+homepage = "https://github.com/fuwn/records"
+repository = "https://github.com/fuwn/records"
+license = "GPL-3.0-only"
+keywords = ["rust", "records"]
+publish = false
+
+[profile.release]
+lto = "fat"
+codegen-units = 1
+
+[dependencies]
+# Web-Server
+actix-web = "3.3.2"
+actix-files = "0.5.0"
+actix-cors = "0.5.4"
+
+# Environment
+dotenv = "0.15.0"
+
+# Logging
+pretty_env_logger = "0.4.0"
+log = "0.4.14"