a small relational database with user-editable schema for manual data entry
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
[package]
|
|
|
|
name = "yopa-web"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Ondřej Hruška <ondra@ondrovo.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
yopa = { path = "../yopa", features = [] }
|
|
|
|
serde = "1"
|
|
|
|
serde_json = "1"
|
|
|
|
heck = "0.3.2"
|
|
|
|
log = "0.4.14"
|
|
|
|
simple-logging = "2.0.2"
|
|
|
|
actix-web = "3"
|
|
|
|
actix-session = "0.4.0"
|
|
|
|
parking_lot = "0.11.1"
|
|
|
|
include_dir = "0.6.0"
|
|
|
|
tera = "1.6.1"
|
|
|
|
actix-web-static-files = "3.0"
|
|
|
|
once_cell = "1.5.2"
|
|
|
|
rand = "0.8.3"
|
|
|
|
itertools = "0.10.0"
|
|
|
|
|
|
|
|
tokio = { version="0.2.6", features=["full"] }
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
actix-web-static-files = "3.0"
|