-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
53 lines (46 loc) · 1.15 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
[package]
name = "facade"
version = "0.2.0"
authors = ["Denis Kolodin <[email protected]>"]
edition = "2018"
repository = "https://github.com/yewstack/facade"
homepage = "https://github.com/yewstack/facade"
documentation = "https://docs.rs/facade/"
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["webasm", "javascript"]
categories = ["gui", "web-programming"]
description = "A framework to rapidly add UI to any Rust app"
[dependencies]
config = "0.9.3"
headers = "0.2.1"
failure = "0.1.5"
flate2 = "1.0.9"
log = "0.4.6"
mime_guess = "2.0.0-alpha.6"
serde = { version = "1.0.94", features = ["derive"] }
serde_json = "1.0.40"
tar = "0.4.26"
tokio = "0.1.22"
warp = "0.1.16"
[dependencies.futures-legacy]
package = "futures"
version = "0.1.28"
[dependencies.futures]
package = "futures-preview"
version = "0.3.0-alpha.18"
features = ["async-await", "nightly", "compat"]
[dependencies.protocol]
package = "facade-protocol"
version = "0.1.0"
path = "protocol"
[build-dependencies]
failure = "0.1.5"
[dev-dependencies]
env_logger = "0.6.2"
runtime = "0.3.0-alpha.7"
runtime-tokio = "0.3.0-alpha.6"
tokio-signal = "0.2.7"
[features]
default = []
refresh = []