forked from trunk-rs/trunk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
58 lines (55 loc) · 1.67 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
57
58
[package]
name = "trunk"
version = "0.13.0"
edition = "2018"
description = "Build, bundle & ship your Rust WASM application to the web."
license = "MIT/Apache-2.0"
authors = ["Anthony Dodd <[email protected]>"]
repository = "https://github.com/thedodd/trunk"
readme = "README.md"
categories = ["command-line-utilities", "wasm", "web-programming"]
keywords = ["wasm", "bundler", "web", "build-tool", "compiler"]
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
[dependencies]
ansi_term = "0.12"
anyhow = "1"
async-compression = { version = "0.3", default-features = false, features = ["deflate", "futures-io", "gzip", "tokio"] }
axum = { version = "0.1", features = ["ws"] }
bytes = "1"
cargo-lock = "6"
cargo_metadata = "0.12"
console = "0.14"
directories-next = "2"
dunce = "1"
envy = "0.4"
fs_extra = "1"
futures = "0.3"
http = "0.2"
hyper = "0.14"
hyper-staticfile = "0.6"
lazy_static = "1"
nipper = "0.1"
notify = "5.0.0-pre.11"
open = "1"
remove_dir_all = "0.6"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "stream", "trust-dns"] }
sass-rs = "0.2"
seahash = "4"
serde = { version = "1", features = ["derive"] }
structopt = "0.3"
structopt-derive = "0.4"
# See https://docs.rs/tokio/latest/tokio/#feature-flags - we basically use all of the features.
tokio = { version = "1", default-features = false, features = ["full"] }
tokio-stream = { version = "0.1", default-features = false, features = ["fs", "time", "net", "signal", "sync"] }
tokio-tar = "0.3"
tokio-tungstenite = "0.14"
toml = "0.5"
tower-http = { version = "0.1", features = ["trace"] }
tracing = "0.1"
tracing-subscriber = "0.2"
which = "4"
[dev-dependencies]
tempfile = "3"