Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 135d0c6

Browse files
committed
1.2.0
1 parent 7648776 commit 135d0c6

File tree

2 files changed

+47
-16
lines changed

2 files changed

+47
-16
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 46 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
[package]
22
name = "rust-g"
33
edition = "2021"
4-
version = "1.1.0"
5-
authors = ["Bjorn Neergaard <[email protected]>", "Tad Hardesty <[email protected]>", "rust-g maintainer team"]
4+
version = "1.2.0"
5+
authors = [
6+
"Bjorn Neergaard <[email protected]>",
7+
"Tad Hardesty <[email protected]>",
8+
"rust-g maintainer team",
9+
]
610
repository = "https://github.com/tgstation/rust-g"
711
license = "MIT"
812
description = "Offloaded task library for the /tg/ Space Station 13 codebase"
@@ -20,7 +24,7 @@ debug = true
2024
thiserror = "1.0"
2125
flume = { version = "0.10", optional = true }
2226
chrono = { version = "0.4", optional = true }
23-
base64 = { version = "0.13", optional = true}
27+
base64 = { version = "0.13", optional = true }
2428
md-5 = { version = "0.10", optional = true }
2529
twox-hash = { version = "1.6", optional = true }
2630
const-random = { version = "0.1.13", optional = true }
@@ -32,30 +36,47 @@ url-dep = { version = "2.1", package = "url", optional = true }
3236
png = { version = "0.17", optional = true }
3337
image = { version = "0.24", optional = true }
3438
git2 = { version = "0.14", optional = true, default-features = false }
35-
noise = { version = "0.7", optional = true}
39+
noise = { version = "0.7", optional = true }
3640
redis = { version = "0.21", optional = true }
37-
reqwest = { version = "0.11", optional = true, default-features = false, features = ["blocking", "rustls-tls"] }
41+
reqwest = { version = "0.11", optional = true, default-features = false, features = [
42+
"blocking",
43+
"rustls-tls",
44+
] }
3845
serde = { version = "1.0", optional = true, features = ["derive"] }
3946
serde_json = { version = "1.0", optional = true }
4047
lazy_static = { version = "1.4", optional = true }
4148
once_cell = { version = "1.4", optional = true }
4249
mysql = { version = "22.2", optional = true }
4350
dashmap = { version = "5.3", optional = true }
4451
zip = { version = "0.6", optional = true }
45-
rand = {version = "0.8", optional = true}
46-
toml-dep = { version = "0.5.8", package="toml", optional = true }
47-
aho-corasick = { version = "0.7.18", optional = true}
48-
rayon = { version = "1.5", optional = true}
49-
dbpnoise = { version = "0.1.2", optional = true}
52+
rand = { version = "0.8", optional = true }
53+
toml-dep = { version = "0.5.8", package = "toml", optional = true }
54+
aho-corasick = { version = "0.7.18", optional = true }
55+
rayon = { version = "1.5", optional = true }
56+
dbpnoise = { version = "0.1.2", optional = true }
5057
pathfinding = { version = "3.0.13", optional = true }
5158
num = { version = "0.4.0", optional = true }
5259

5360
[features]
54-
default = ["acreplace", "cellularnoise", "dmi", "file", "git", "http", "json", "log", "noise", "sql", "time", "toml", "url"]
61+
default = [
62+
"acreplace",
63+
"cellularnoise",
64+
"dmi",
65+
"file",
66+
"git",
67+
"http",
68+
"json",
69+
"log",
70+
"noise",
71+
"sql",
72+
"time",
73+
"toml",
74+
"url",
75+
]
5576

5677
# default features
5778
acreplace = ["aho-corasick"]
58-
cellularnoise = ["rand","rayon"]
79+
cellularnoise = ["rand", "rayon"]
5980
dmi = ["png", "image"]
6081
file = []
6182
git = ["git2", "chrono"]
@@ -69,11 +90,21 @@ url = ["url-dep", "percent-encoding"]
6990

7091
# additional features
7192
batchnoise = ["dbpnoise"]
72-
hash = ["base64", "const-random", "md-5", "hex", "sha-1", "sha2", "twox-hash", "serde", "serde_json"]
73-
pathfinder = [ "num", "pathfinding", "serde", "serde_json"]
93+
hash = [
94+
"base64",
95+
"const-random",
96+
"md-5",
97+
"hex",
98+
"sha-1",
99+
"sha2",
100+
"twox-hash",
101+
"serde",
102+
"serde_json",
103+
]
104+
pathfinder = ["num", "pathfinding", "serde", "serde_json"]
74105
redis_pubsub = ["flume", "redis", "serde", "serde_json"]
75106
unzip = ["zip", "jobs"]
76-
worleynoise = ["rand","rayon"]
107+
worleynoise = ["rand", "rayon"]
77108

78109
# internal feature-like things
79110
jobs = ["flume"]

0 commit comments

Comments
 (0)