-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (50 loc) · 1.3 KB
/
Cargo.toml
File metadata and controls
57 lines (50 loc) · 1.3 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
[package]
name = "cs2-nav"
version = "0.3.18"
edition = "2024"
description = "Package to produce CS2 meeting point plots."
license = "MIT"
authors = ["Jan-Eric <janericnitschke@gmail.com"]
readme = "README.md"
repository = "https://github.com/JanEricNitschke/cs2_meeting_points"
keywords = ["CS2", "visualization"]
categories = ["visualization"]
include = [
"/src",
"/tests",
"/Cargo.toml",
"/pyproject.toml",
"/README.md",
"/LICENSE",
"/py.typed",
"/*.pyi",
]
[dependencies]
bincode = "=1.3.3"
geo = "0.32.0"
itertools = "0.14.0"
petgraph = "0.8.3"
rayon = "1.11.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
simple-tqdm = { version = "0.2.0", features = ["rayon"] }
rustc-hash = "2.1.2"
sha2 = "0.11.0"
clap = { version = "4.6.0", features = ["derive"] }
pyo3 = { version = "0.28.2", features = ["extension-module"] }
byteorder = "1.5.0"
hex = "0.4.3"
[target.'cfg(all(not(target_env = "msvc"), not(target_arch = "wasm32")))'.dependencies]
tikv-jemallocator = "0.6"
[lib]
name = "cs2_nav"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "cs2_meeting_points"
path = "src/main.rs"
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
[dev-dependencies]
image = "0.25.10"