forked from yogstation13/rust-g
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
119 lines (111 loc) · 3.41 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[package]
name = "rust-g"
edition = "2021"
version = "1.2.0-yogs1"
authors = [
"Bjorn Neergaard <[email protected]>",
"Tad Hardesty <[email protected]>",
"rust-g maintainer team",
]
repository = "https://github.com/tgstation/rust-g"
license = "MIT"
description = "Offloaded task library for the /tg/ Space Station 13 codebase"
[lib]
crate-type = ["cdylib"]
[profile.release]
opt-level = 3
codegen-units = 1
lto = true
debug = true
[dependencies]
thiserror = "1.0"
flume = { version = "0.10", optional = true }
chrono = { version = "0.4", optional = true }
base64 = { version = "0.13", optional = true }
md-5 = { version = "0.10", optional = true }
twox-hash = { version = "1.6", optional = true }
const-random = { version = "0.1.13", optional = true }
sha-1 = { version = "0.10", optional = true }
sha2 = { version = "0.10", optional = true }
hex = { version = "0.4", optional = true }
percent-encoding = { version = "2.1", optional = true }
url-dep = { version = "2.1", package = "url", optional = true }
png = { version = "0.17", optional = true }
image = { version = "0.24", optional = true }
git2 = { version = "0.14", optional = true, default-features = false }
noise = { version = "0.7", optional = true }
redis = { version = "0.21", optional = true }
reqwest = { version = "0.11", optional = true, default-features = false, features = [
"blocking",
"rustls-tls",
] }
serde = { version = "1.0", optional = true, features = ["derive"] }
serde_json = { version = "1.0", optional = true }
lazy_static = { version = "1.4", optional = true }
once_cell = { version = "1.4", optional = true }
mysql = { version = "22.2", optional = true }
dashmap = { version = "5.3", optional = true }
zip = { version = "0.6", optional = true }
rand = { version = "0.8", optional = true }
toml-dep = { version = "0.5.8", package = "toml", optional = true }
aho-corasick = { version = "0.7.18", optional = true }
rayon = { version = "1.5", optional = true }
dbpnoise = { version = "0.1.2", optional = true }
pathfinding = { version = "3.0.13", optional = true }
num = { version = "0.4.0", optional = true }
concat-string = { version = "1.0.1", optional = true }
[features]
default = [
"acreplace",
"binary_space_partition",
"cellularnoise",
"dmi",
"file",
"git",
"http",
"json",
"log",
"noise",
"random_room_placement",
"sql",
"time",
"toml",
"url",
]
# default features
acreplace = ["aho-corasick"]
binary_space_partition = ["rand", "rayon", "serde", "serde_json", "sha2"]
cellularnoise = ["rand", "rayon"]
dmi = ["png", "image"]
file = []
git = ["git2", "chrono"]
http = ["reqwest", "serde", "serde_json", "once_cell", "jobs"]
json = ["serde", "serde_json"]
log = ["chrono", "flume"]
random_room_placement = ["rand", "rayon", "serde", "serde_json", "sha2"]
sql = ["mysql", "serde", "serde_json", "once_cell", "dashmap", "jobs"]
time = []
toml = ["serde", "serde_json", "toml-dep"]
url = ["url-dep", "percent-encoding"]
# additional features
batchnoise = ["dbpnoise"]
hash = [
"base64",
"const-random",
"md-5",
"hex",
"sha-1",
"sha2",
"twox-hash",
"serde",
"serde_json",
]
influxdb2 = ["concat-string", "serde", "serde_json", "http"]
pathfinder = ["num", "pathfinding", "serde", "serde_json"]
redis_pubsub = ["flume", "redis", "serde", "serde_json"]
unzip = ["zip", "jobs"]
worleynoise = ["rand", "rayon"]
# internal feature-like things
jobs = ["flume"]
[dev-dependencies]
regex = "1"