-
Notifications
You must be signed in to change notification settings - Fork 4k
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (33 loc) · 939 Bytes
/
Cargo.toml
File metadata and controls
38 lines (33 loc) · 939 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
[package]
name = "warp_util"
authors = ["Warp Team <dev@warp.dev>"]
version = "0.1.0"
edition = "2021"
description = "General utilities and helpers used across warp crates"
publish.workspace = true
license.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
content_inspector = "0.2.4"
pathdiff = "0.2.1"
rand.workspace = true
dirs.workspace = true
hex.workspace = true
lazy_static.workspace = true
log.workspace = true
mime_guess.workspace = true
regex.workspace = true
thiserror.workspace = true
typed-path.workspace = true
dunce.workspace = true
serde.workspace = true
serde_json.workspace = true
pin-project.workspace = true
futures-util.workspace = true
[target.'cfg(windows)'.dependencies]
windows.workspace = true
[target.'cfg(target_family = "wasm")'.dependencies]
gloo.workspace = true
[dev-dependencies]
tempfile = "3.8.0"
warpui.workspace = true