forked from denoland/deno_path_util
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (27 loc) · 667 Bytes
/
Cargo.toml
File metadata and controls
33 lines (27 loc) · 667 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
[package]
name = "deno_path_util"
description = "Path utilities used in Deno"
version = "0.6.4"
edition = "2024"
authors = ["the Deno authors"]
license = "MIT"
repository = "https://github.com/denoland/deno_path_util"
[features]
[dependencies]
percent-encoding = "2.3.0"
thiserror = "2"
sys_traits.workspace = true
deno_error = { version = "0.7.0", features = ["url"] }
url = "2.5.1"
[dev-dependencies]
pretty_assertions = "1.4.0"
sys_traits = { workspace = true, features = ["getrandom", "memory", "real"] }
tempfile = "3.4.0"
divan = "0.1.21"
[workspace]
members = ["."]
[workspace.dependencies]
sys_traits = "0.1.17"
[[bench]]
name = "bench"
harness = false