-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
81 lines (76 loc) · 3.56 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
[package]
name = "wlambda"
version = "0.8.1"
authors = ["Weird Constructor <[email protected]>"]
license = "GPL-3.0-or-later"
edition = "2021"
description = "WLambda is an embeddable scripting language for Rust"
repository = "https://github.com/WeirdConstructor/WLambda"
readme = "README.md"
keywords = ["scripting","language","embeddable","embedded","lisp"]
categories = ["parsing","compilers","game-development","config","parser-implementations"]
exclude = ["res/*"]
[features]
default = [
"clap",
"rustyline", "regex", "chrono", "serde", "serde_json",
"rmp-serde", "toml", "quick-xml", "socket2", "base64", "flate2",
"markdown"
]
mqtt = ["rumqttd", "rumqttc"]
http = ["reqwest", "rouille"]
mail = ["native-tls", "imap", "mailparse", "imap-proto"]
html = ["html5ever", "tendril", "markup5ever"]
cursive = ["dep:cursive", "cursive_buffered_backend", "unicode-width"]
odbc = ["odbc-api", "odbc-sys"]
clipboard = ["copypasta"]
all = ["mqtt", "http", "cursive", "zip", "odbc", "clipboard", "sqlite", "mail", "html"]
[dependencies]
fnv = "1.0.7"
weezl = "0.1.7"
clap = { version = "4.4.11", features = ["string", "env"], optional = true }
rustyline = { version = "6.1.2", optional = true }
zip = { version = "0.6.3", optional = true, features = ["deflate"], default-features = false }
flate2 = { version = "1.0.25", optional = true }
regex = { version = "1.7.3", optional = true }
chrono = { version = "0.4.24", optional = true }
serde = { version = "1.0.159", optional = true, features = ["derive"] }
markdown = { version = "0.3.0", optional = true }
serde_json = { version = "1.0.95", optional = true }
rmp-serde = { version = "1.1.1", optional = true }
toml = { version = "0.5.9", optional = true }
mint = { version = "0.5.5", optional = true }
quick-xml = { version = "0.27.1", optional = true }
socket2 = { version = "0.5.1", optional = true, features = ["all"] }
reqwest = { version = "0.11.9", optional = true, features = ["blocking"] }
rouille = { version = "3.6.2", optional = true }
rumqttc = { version = "0.23.0", optional = true, features = [] }
rumqttd = { version = "0.18.0", optional = true, features = [] }
cursive = { version = "0.20.0", optional = true, features = ["crossterm-backend"], default-features = false }
sqlite = { version = "0.30.4", optional = true }
imap = { version = "2.4.1", optional = true }
imap-proto = { version = "0.10.2", optional = true }
mailparse = { version = "0.14.0", optional = true }
native-tls = { version = "0.2.11", optional = true }
cursive_buffered_backend = { version = "0.6.1", optional = true }
unicode-width = { version = "0.1", optional = true }
odbc-api = { version = "0.57.0", optional = true }
odbc-sys = { version = "0.21.3", optional = true }
copypasta = { version = "0.8.1", optional = true }
html5ever = { version = "0.26.0", optional = true }
tendril = { version = "0.4.3", optional = true }
markup5ever = { version = "0.11.0", optional = true }
#xml5ever = { version = "0.16" }
#cursive = { path = "../cursive/cursive", optional = true, features = ["crossterm-backend"], default-features = false }
#rumqttc = { path = "../other/rumqtt/rumqttc", optional = true }
#rumqttd = { path = "../other/rumqtt/rumqttd", optional = true }
base64 = { version = "0.13.0", optional = true }
[dev-dependencies]
regex-syntax = { version = "0.6.18" }
[profile.release]
debug = true
#strip = "debuginfo"
strip = "symbols"
#opt-level="z"
#lto = true
#panic = 'abort'