-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (52 loc) · 1.16 KB
/
Cargo.toml
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
[[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"
[dependencies]
clap = { features = ["derive"], version = "4.5.23" }
walkdir = { version = "2.5.0" }
futures = { version = "0.3.31" }
rayon = { version = "1.10.0" }
tokio = { version = "1.42.0", features = ["full"] }
once_cell = { version = "1.20.2" }
num_cpus = { version = "1.16.0" }
crossbeam-queue = "0.3.11"
unbug = { version = "0.4.0", features = ["enable"] }
[build-dependencies]
serde = { version = "1.0.216", features = ["derive"] }
toml = { version = "0.8.19" }
[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 —"
license-file = "LICENSE"
name = "prun"
repository = "https://github.com/PlayForm/Run.git"
version = "0.1.3"
edition = "2021"
include = [
"Source/**/*",
"LICENSE",
"README.md",
"CHANGELOG.md",
"build.rs",
"Cargo.toml",
]
[features]
default = []
Debug = ["unbug/enable"]