-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
56 lines (52 loc) · 1.64 KB
/
Cargo.toml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "bui-backend"
description = "Brower User Interfaces (BUIs) with Tokio"
version = "0.15.0"
authors = ["Andrew Straw <[email protected]>"]
documentation = "https://docs.rs/bui-backend/"
repository = "https://github.com/astraw/bui-backend"
readme = "README.md"
keywords = ["server", "user-interface", "server-sent-events", "futures", "tokio"]
license = "MIT/Apache-2.0"
categories = ["gui", "web-programming::http-server"]
edition = "2018"
[dependencies]
async-change-tracker = "0.3.2"
bui-backend-codegen = {version="0.9", default-features = false, path="codegen"}
bui-backend-types = {version="0.8", path="types", features=["uuid-v4"]}
futures = "0.3.0"
parking_lot = "0.12"
includedir = {version="0.6", optional=true}
tokio = {version="1.0", features=["sync", "rt", "net"]}
tokio-stream = "0.1.8"
stream-cancel = "0.8"
http = "1.0"
url = "2"
hyper = { version = "1.0", features = ["server", "http1"] }
log = "0.4"
serde = {version="1.0",features=["derive"]}
serde_json = {version = "1.0"}
jsonwebtoken = "9"
uuid = { version = "1.0", features = ["v4", "serde"] }
thiserror = "1.0"
cookie = "0.18"
conduit-mime-types = "0.8"
dyn-clone = "1.0.5"
bytes = "1.5.0"
http-body-util = "0.1.0"
hyper-util = { version = "0.1.1", features = ["tokio", "server", "server-auto"] }
[features]
default = ["bundle_files"]
bundle_files = ["bui-backend-codegen/bundle_files", "includedir"]
serve_files = ["bui-backend-codegen/serve_files"]
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
features = ["bui-backend-types/uuid-v4"]
[workspace]
members = [
"codegen",
"bui-demo",
"bui-demo/frontend_seed",
"bui-demo/frontend_yew",
"types",
]