-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (41 loc) · 891 Bytes
/
Cargo.toml
File metadata and controls
49 lines (41 loc) · 891 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
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "riptide-shell"
description = "The Riptide programming language interpreter"
version.workspace = true
authors.workspace = true
license.workspace = true
edition.workspace = true
[dependencies]
directories.workspace = true
exitcode = "1.1"
owo-colors = "4"
riptide-runtime.path = "../runtime"
riptide-stdlib.path = "../stdlib"
scopeguard.workspace = true
toml = "0.8"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.log]
workspace = true
features = ["std"]
[dependencies.log-panics]
version = "2.1"
features = ["with-backtrace"]
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.serde]
workspace = true
features = ["derive"]
[dependencies.tokio]
workspace = true
features = [
"io-util",
"process",
"rt",
"signal",
]
[target.'cfg(unix)'.dependencies]
termios = "0.3"
vte = "0.13" # parsing user input