-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
158 lines (140 loc) · 3.47 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
[workspace]
resolver = "2"
members = [
"crates/common",
"crates/compiler",
"crates/daemon",
"crates/db",
"crates/kernel",
"crates/rpc/rpc-async-client",
"crates/rpc/rpc-common",
"crates/rpc/rpc-sync-client",
"crates/telnet-host",
"crates/testing/load-tools",
"crates/testing/moot",
"crates/web-host",
"tools/moorc",
]
default-members = [
"crates/common",
"crates/compiler",
"crates/kernel",
"crates/db",
"crates/rpc/rpc-common",
"crates/rpc/rpc-sync-client",
"crates/rpc/rpc-async-client",
"crates/daemon",
"crates/telnet-host",
"crates/web-host",
"crates/testing/moot",
"crates/testing/load-tools",
"tools/moorc",
]
[workspace.package]
authors = [
"Ryan Daum <[email protected]>",
"Norman Nunley <[email protected]>",
]
categories = [
"game",
"virtual-world",
"mud",
"database",
"programming-language",
]
edition = "2021"
keywords = [
"mud",
"programming-language",
"virtual-world",
"game",
"virtual-machine",
]
license = "GPL-3"
readme = "README.md"
repository = "https://github.com/rdaum/moor.git"
rust-version = "1.84.0"
[workspace.dependencies]
## Command line arguments parsing.
clap = "4.5"
clap_derive = "4.5"
## HTTP/websockets front-end
axum = { version = "0.8", features = ["ws"] }
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
serde_json = "1.0"
## Asynchronous transaction processing & networking, used in web-host and telnet-host.
## the daemon itself uses its own threading
futures = "0.3"
futures-util = { version = "0.3", features = ["sink", "std"] }
tokio = { version = "1.37", features = ["full"] }
tokio-util = { version = "0.7", features = ["full"] }
tower-http = { version = "0.6", features = ["fs"] }
# Used for RPC daemon/client
tmq = "0.5"
zmq = "0.10"
## Logging & tracing
tracing = "0.1"
tracing-subscriber = "0.3"
# General usefulness
binary-layout = "4.0"
bincode = "2.0.0-rc.3"
bytes = "1.7"
chrono = "0.4"
criterion = { version = "0.5", features = ["async_tokio"] }
crossbeam-channel = "0.5"
encoding_rs = "0.8"
enum-primitive-derive = "0.3"
im = "15.1"
indexmap = "2.7"
itertools = "0.14"
lazy_static = "1.5"
num-traits = "0.2"
oneshot = { version = "0.1", default-features = false, features = ["std"] }
regex = "1.11"
semver = "1.0"
shadow-rs = "0.38"
similar = "*"
similar-asserts = "*"
strum = { version = "0.26", features = ["derive"] }
ustr = "1.0"
uuid = { version = "1.11", features = ["v4"] }
xml-rs = "0.8"
## Required for MOO builtins.
argon2 = "0.5"
chrono-tz = "0.10"
iana-time-zone = "0.1"
md-5 = "0.10" # For MOO's "string_hash"
onig = { version = "6.4", default-features = false }
pwhash = { version = "1.0", default-features = false }
rand = "0.8"
## Compiler grammar/parser
pest = "2.7"
pest_derive = "2.7"
## Error declaration/ handling
color-eyre = "0.6"
eyre = "0.6"
thiserror = "2.0"
## For macro-ing
paste = "1.0"
# For the DB & common layer.
fjall = { version = "2.5", default-features = false, features = ["bytes"] }
libc = "0.2"
text_io = "0.1" # Used for reading text dumps.
# Dev dependencies
tempfile = "3.10"
# testing
escargot = "0.5"
pretty_assertions = "1.4"
serial_test = "3.1"
test-case = "3.3"
test_each_file = "0.3"
unindent = "0.2"
# Auth/Auth
ed25519-dalek = { version = "2.0", features = ["pkcs8", "pem", "signature"] }
rusty_paseto = { version = "0.7" }
signal-hook = "0.3"
# For the telnet host
termimad = "0.31"
# For the consistency checker in `load-tools`
edn-format = "3.3"