-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (69 loc) · 2.05 KB
/
Copy pathCargo.toml
File metadata and controls
74 lines (69 loc) · 2.05 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
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "factorio-bot-core"
version = "0.2.4-dev"
authors = ["Artur Hallmann <arturh@arturh.de>"]
edition = "2021"
[package.metadata.release]
tag = false
push = false
publish = false
[dependencies]
rand = "0.9"
rcon = { version = "0.6", features = ["rt-tokio"] }
bb8 = "0.9.1"
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
serde_json = "1.0"
config = "0.15.19"
pathfinding = "4.14"
parking_lot = "0.12"
paris = { version = "1.5", features = ["timestamps", "macros"] }
color-eyre = "0.6"
petgraph = { version = "0.8.0", features = ["serde-1"] }
indicatif = "0.18.3"
wildmatch = "2.1"
image = "0.25"
imageproc = "0.25"
rusttype = "0.9"
factorio-blueprint = "0.3"
include_dir = "0.7"
num-traits = "0.2"
runas = "1.2"
async-trait = "0.1"
tokio = { version = "1", features = ["full", "tracing"] }
noisy_float = { version = "0.2", features = ["serde"] }
typescript-definitions = { version = "0.1", package = "typescript-definitions-ufo-patch", features = ["export-typescript"] }
enum-primitive-derive = "0.3"
unicode-segmentation = "1.12"
strum = { version = "0.27", features = ["derive"] }
dashmap = {version = "6.1", features = ["serde"] }
euclid = {version = "0.22", features = ["serde"] }
smallvec = { version = "1.13", features = ["serde"] }
base64 = "0.22"
ptree = "0.5"
fnv = "1.0"
itertools = "0.14"
human-sort = "0.2"
flate2 = "1.0"
tar = "0.4"
xz2 = "0.1"
zip = "7.0"
toml = "0.9"
regex = "1.11"
schemars = { version = "0.8.22", features = ["preserve_order"] }
mlua = { version = "0.11", features = ["lua54", "serialize", "macros"] }
miette = {version = "7.4", features = ["fancy"] }
thiserror = "2.0"
futures = "0.3"
#
#[target.'cfg(unix)'.dependencies]
#
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "^0.61.2", features = ["Win32_Foundation", "Win32_System_SystemInformation", "Win32_System_ProcessStatus", "Win32_System_Threading", "Win32_UI_WindowsAndMessaging"] }
[build-dependencies]
serde = { version = "^1", features = [ "derive" ] }
config_struct = "^0.5"
toml = "*"
[dev-dependencies]
mockall = "0.14.0"
mockall_double = "0.3.1"