-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 692 Bytes
/
Cargo.toml
File metadata and controls
38 lines (34 loc) · 692 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
[package]
name = "riptide-runtime"
description = "The Riptide programming language interpreter"
rust-version = "1.75.0"
version.workspace = true
authors.workspace = true
license.workspace = true
edition.workspace = true
[dependencies]
async-recursion = "1.0"
bstr = "1.10"
dirs.workspace = true
log.workspace = true
regex.workspace = true
riptide-syntax.path = "../syntax"
scopeguard.workspace = true
tokio-pipe = "0.2"
[dependencies.gc]
version = "0.5.0"
features = ["derive"]
[dependencies.nix]
version = "0.27"
features = ["fs", "process"]
[dependencies.tokio]
workspace = true
features = [
"fs",
"io-std",
"io-util",
"macros",
"process",
"rt",
"signal",
]