-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (37 loc) · 861 Bytes
/
Cargo.toml
File metadata and controls
40 lines (37 loc) · 861 Bytes
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
[workspace]
members = [
"macro",
]
[package]
authors = ["Tangram <root@tangram.dev"]
description = "Web Application Build Tool"
documentation = "https://docs.rs/sunfish"
edition = "2021"
homepage = "https://github.com/tangramdotdev/sunfish"
license = "MIT"
name = "sunfish"
publish = true
repository = "https://github.com/tangramdotdev/sunfish"
rust-version = "1.57"
version = "0.7.3"
[lib]
path = "lib.rs"
[dependencies]
anyhow = { version = "1", features = ["backtrace"] }
digest = "0.10"
futures = "0.3"
hex = "0.4"
http = "0.2"
hyper = { version = "0.14", features = ["full"] }
ignore = "0.4"
notify = "5.0.0-pre.11"
rayon = "1.5"
sha2 = "0.10"
sunfish_macro = { version = "0.7", path = "macro" }
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
toml = "0.5"
tracing = "0.1"
walkdir = "2"
wasm-bindgen-cli-support = "0.2"
which = "4"