-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
73 lines (62 loc) · 1.95 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
61
62
63
64
65
66
67
68
69
70
71
72
73
[package]
name = "bxt-rs"
version = "1.0.0"
authors = ["Ivan Molodetskikh <[email protected]>"]
edition = "2021"
license = "GPL-3.0-or-later"
[lib]
crate-type = ["cdylib", "lib"]
[dependencies]
ash = "0.37.3"
bincode = "1.3.3"
bitflags = "2.3.3"
bxt-ipc-types = { version = "0.1.0", path = "bxt-ipc-types" }
bxt-macros = { path = "bxt-macros" }
bxt-patterns = { path = "bxt-patterns" }
bxt-strafe = { path = "bxt-strafe" }
byte-slice-cast = "1.2.2"
color-eyre = { version = "0.6.2", default-features = false }
crossbeam-channel = "0.5.8"
git-version = "0.3.5"
glam = "0.24.1"
hltas = { version = "0.9.0", features = ["serde1"] }
ipc-channel = "0.16.1"
itertools = "0.11.0"
libc = "0.2.147"
libloading = "0.8.0"
nom = "7.1.3"
once_cell = "1.18.0"
rand = "0.8.5"
rayon = "1.7.0"
rhai = { version = "1.15.1", features = ["no_closure", "no_custom_syntax", "no_module", "no_time", "f32_float", "serde"] }
rusqlite = { version = "0.29.0", features = ["bundled"] }
serde = { version = "1.0.174", features = ["derive"] }
serde_json = "1.0.103"
tap = "1.0.1"
thiserror = "1.0.44"
tracing = "0.1.40"
tracing-chrome = "0.7.2"
tracing-subscriber = "0.3.18"
tracing-tracy = { version = "0.11.3", optional = true }
tracy-client = { version = "0.17.4", optional = true }
[target."cfg(windows)".dependencies]
minhook-sys = "0.1.1"
[target."cfg(windows)".dependencies.winapi]
version = "0.3.9"
features = ["libloaderapi", "psapi", "winuser", "synchapi", "handleapi", "processthreadsapi", "winbase", "winerror"]
[dev-dependencies]
expect-test = "1.4.1"
hltas = { version = "0.9.0", features = ["serde1", "proptest1"] }
proptest = "1.2.0"
[build-dependencies]
gl_generator = "0.14.0"
[profile.dev.package.bxt-patterns]
opt-level = 3
[profile.dev.package.bxt-vct]
opt-level = 3
[profile.dev.package.backtrace]
opt-level = 3
[profile.release]
overflow-checks = true # So no hidden unsoundness can sneak in.
[workspace]
members = [".", "bxt-ipc-types", "bxt-macros", "bxt-patterns", "bxt-strafe", "bxt-vct"]