aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 8cae613fc90420b0c65b4b28c6a322b4285b04cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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"