forked from Blightmud/Blightmud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
73 lines (65 loc) · 1.79 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 = "blightmud"
version = "5.4.0"
description = "A terminal mud-client"
readme = "README.md"
license = "GPL3"
authors = ["Linus Probert"]
edition = "2021"
build = "build.rs"
[lib]
doctest = false
crate-type = ["rlib"]
[features]
default = ["spellcheck"]
text-to-speech = ["tts"]
spellcheck = ["hunspell-rs", "hunspell-sys"]
[dependencies]
libmudtelnet = "2.0.1"
termion = "3"
log = "0.4.21"
simple-logging = "2.0.2"
chrono = "0.4.38"
signal-hook = "0.3.17"
mlua = { version = "0.9.7", features = ["lua54", "send", "vendored", "macros"] }
regex = "1.10.4"
strip-ansi-escapes = "0.2.0"
vte = "0.13.0"
timer = "0.2.0"
flate2 = "1.0.28"
pulldown-cmark-mdcat = { version = "2.1.2", default-features = false }
pulldown-cmark = "0.9.6"
syntect = "5.2.0"
serde = { version = "1.0.198", features = ['derive'] }
ron = "0.8.1"
anyhow = "1.0.82"
lazy_static = "1.4.0"
rs-complete = "1.3.1"
getopts = "0.2.21"
human-panic = "2.0.0"
tts = { version = "0.26.1", optional = true }
serde_json = "1.0.116"
git2 = "0.18.3"
rodio = "0.17.3"
notify-debouncer-mini = "0.4.1"
hunspell-rs = { version = "0.4.0", optional = true }
hunspell-sys = { version = "0.3.0", features = ['bundled'], optional = true }
rustls = "0.22"
webpki-roots = "0.26"
reqwest = { version = "0.12.4", default-features = false, features = ['blocking', 'rustls-tls', 'json'] }
socket2 = "0.5.6"
[dev-dependencies]
mockall = "0.12.1"
mockall_double = "0.3.1"
rustls-pemfile = "2.1"
env_logger = "0.10.2"
[profile.dev.package.hunspell-sys]
# fixes debug profile build errs from warnings of the form:
# warning _FORTIFY_SOURCE requires compiling with optimization (-O)
opt-level = 3
[package.metadata.rpm]
package = "blightmud"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[package.metadata.rpm.targets]
blightmud = { path = "/usr/bin/blightmud" }