-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
41 lines (31 loc) · 798 Bytes
/
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
[package]
name = "whitespacers"
version = "1.2.0"
authors = [ "CensoredUsername [email protected]" ]
description = "A whitespace JIT-compiler, for when your whitespace just isn't executing fast enough."
documentation = "https://censoredusername.github.io/whitespace-rs/whitespacers/index.html"
repository = "https://github.com/CensoredUsername/whitespace-rs"
readme = "README.md"
keywords = ["whitespace", "wsc"]
license = "MPL-2.0"
edition = "2021"
exclude = [
"commit_docs.sh",
]
[lib]
name = "whitespacers"
path = "src/lib.rs"
[[bin]]
name = "wsc"
path = "src/main.rs"
[dependencies]
itertools = "0.13.0"
crossbeam = "0.8.4"
fnv = "1.0.7"
bitflags = "2.6.0"
num-bigint = "0.4.6"
num-traits = "0.2.19"
dynasmrt = "3.0.1"
[profile.release]
debug = true
lto = true