-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 841 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 841 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 = "rust-script-ext"
version = "1.0.0"
authors = [ "Kurt Lawrence <kurtlawrence.info>" ]
edition = "2021"
description = "Opinionated set of extensions for use with rust-script"
repository = "https://github.com/kurtlawrence/rust-script-ext"
license-file = "LICENSE"
[workspace]
members = ["macros"]
[dependencies]
anyhow = "1.0.102"
macros = { path = "macros" }
comfy-table = "7.0"
csv = "1.2"
fastrand = "2.0"
flume = "0.12.0"
globset = "0.4"
howudoin = { version = "0.1", features = ["term-line"] }
humantime = "2.1"
itertools = "0.14.0"
numfmt = { git = "https://github.com/kurtlawrence/numfmt" }
rayon = "1.7"
regex = "1.9"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
time = { version = "0.3", features = ["serde-human-readable"] }
toml = "1.0.3+spec-1.1.0"
[dev-dependencies]
insta = "1.31.0"