-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 855 Bytes
/
Copy pathCargo.toml
File metadata and controls
38 lines (34 loc) · 855 Bytes
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
[workspace]
members = [
"earlgrey",
"fluxcap",
"kronos",
"lexers",
"lisp",
"lox",
"shunting",
"numerica",
"unidades",
"tools",
]
resolver = "2"
[workspace.dependencies]
rand = "0.10"
rand_distr = "0.6"
libm = "0.2"
chrono = "0.4"
rustyline = "18.0"
time = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
home = "0.5"
earlgrey = { version = "0.5", path = "earlgrey" }
fluxcap = { version = "0.2", path = "fluxcap" }
kronos = { version = "0.3", path = "kronos" }
lexers = { version = "0.1", path = "lexers" }
lisp = { version = "0.2", path = "lisp" }
lox = { version = "0.2", path = "lox" }
numerica = { version = "0.1", path = "numerica" }
shunting = { version = "0.1", path = "shunting" }
unidades = { version = "0.1", path = "unidades" }
tools = { version = "0.1", path = "tools" }