2021-05-04 11:29:36 +02:00
|
|
|
[package]
|
2021-08-12 10:49:04 +02:00
|
|
|
name = "pslink-app"
|
2021-05-04 11:29:36 +02:00
|
|
|
authors = ["Dietrich <dietrich@teilgedanken.de>"]
|
|
|
|
categories = ["web-programming", "network-programming", "web-programming::http-server", "command-line-utilities"]
|
|
|
|
description = "A wasm frontend for pslink. The frontend communicates via json API."
|
|
|
|
edition = "2018"
|
|
|
|
keywords = ["url", "link", "webpage", "actix", "web"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/enaut/pslink/"
|
2021-10-11 13:01:19 +02:00
|
|
|
version = "0.4.4"
|
2021-05-04 11:29:36 +02:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2021-10-11 13:01:19 +02:00
|
|
|
fluent = "0.16"
|
2021-05-04 11:29:36 +02:00
|
|
|
seed = "0.8"
|
2021-08-12 21:10:30 +02:00
|
|
|
serde = {version="1.0", features = ["derive"]}
|
2021-05-04 11:29:36 +02:00
|
|
|
unic-langid = "0.9"
|
2021-10-11 13:01:19 +02:00
|
|
|
strum_macros = "0.22"
|
|
|
|
strum = "0.22"
|
2021-05-04 11:29:36 +02:00
|
|
|
enum-map = "1"
|
2021-05-30 14:33:23 +02:00
|
|
|
qrcode = "0.12"
|
2021-06-02 10:41:54 +02:00
|
|
|
image = "0.23"
|
2021-05-04 11:29:36 +02:00
|
|
|
|
2021-08-13 15:29:27 +02:00
|
|
|
pslink-shared = { version="0.4", path = "../shared" }
|
|
|
|
pslink-locales = { version="0.4", path = "../locales" }
|
2021-07-17 14:26:19 +02:00
|
|
|
|
|
|
|
[dependencies.web-sys]
|
|
|
|
version = "0.3"
|
|
|
|
features = [
|
|
|
|
"IntersectionObserver",
|
|
|
|
"IntersectionObserverInit",
|
|
|
|
"IntersectionObserverEntry",
|
2021-08-12 10:51:22 +02:00
|
|
|
]
|