Skip to content
This repository was archived by the owner on Dec 31, 2022. It is now read-only.
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,938 changes: 710 additions & 1,228 deletions Cargo.lock

Large diffs are not rendered by default.

25 changes: 10 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ version = "1.0.1"
authors = ["Bobby Reynolds <bobby@reynoldsbd.net>"]
license = "MIT OR Apache-2.0"
edition = "2018"
default-run = "lcsvc"

[[bin]]
name = "lcsvc"
path = "src/lcsvc.rs"

[features]
default = ["portal", "stream"]
Expand All @@ -17,23 +12,23 @@ stream = []
stream-api = ["stream"]

[dependencies]
actix-files = "0.1"
actix-web = "1.0"
actix-files = "0.2"
actix-rt = "1"
actix-web = "2"
argonautica = "0.2"
base64 = "0.10"
bytes = "0.4"
derive_more = "0.99.2"
awc = "1"
base64 = "0.11"
bytes = "0.5"
derive_more = "0.99.3"
diesel = { version = "1.4", features = ["r2d2", "sqlite"] }
diesel_migrations = "1.4"
env_logger = "0.7"
futures = "0.1"
futures = "0.3"
lazy_static = "1.4"
libsqlite3-sys = { version = "0.16", features = ["bundled"] }
log = "0.4"
openssl = { version = "0.10", features = ["vendored"] }
rand = "0.7"
reqwest = "0.9"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tera = "1.0.0"
tokio = "0.1"
tera = "1"
tokio = { version = "0.2", features = ["full"] }
Loading