-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (53 loc) · 1.16 KB
/
Copy pathCargo.toml
File metadata and controls
61 lines (53 loc) · 1.16 KB
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
59
60
61
[[bin]]
name = "PRun"
path = "Source/Library.rs"
[[bin]]
name = "Run"
path = "Source/Library.rs"
[[bin]]
name = "Inn"
path = "Source/Library.rs"
[[bin]]
name = "InnKeeper"
path = "Source/Library.rs"
[build-dependencies]
serde = { version = "1.0.229", features = ["derive"] }
toml = { version = "1.1.6+spec-1.1.0" }
[dependencies]
clap = { features = ["derive"], version = "4.6.6" }
crossbeam-queue = "0.3.14"
crossterm = { version = "0.29.0" }
futures = { version = "0.3.34" }
globset = "0.4.20"
num_cpus = { version = "1.17.0" }
once_cell = { version = "1.21.4" }
rayon = "1.12.0"
ratatui = { version = "0.30.2" }
tokio = { version = "1.53.1", features = ["full"] }
walkdir = { version = "2.5.0" }
[features]
default = []
[lib]
crate-type = ["staticlib", "cdylib", "rlib"]
name = "Library"
path = "Source/Library.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autotests = false
default-run = "Run"
description = "Run 🍺"
edition = "2024"
include = [
"Source/**/*",
"LICENSE",
"README.md",
"CHANGELOG.md",
"build.rs",
"Cargo.toml",
]
license-file = "LICENSE"
name = "prun"
repository = "https://github.com/PlayForm/Run.git"
version = "0.3.0"