forked from roc-lang/basic-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 892 Bytes
/
Cargo.toml
File metadata and controls
36 lines (33 loc) · 892 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
[package]
name = "roc_host"
version = "0.0.1"
authors = ["The Roc Contributors"]
license = "UPL-1.0"
edition = "2021"
description = "This provides the [host](https://github.com/roc-lang/roc/wiki/Roc-concepts-explained#host) implementation for the platform."
links = "app"
[lib]
name = "roc_host"
path = "src/lib.rs"
[dependencies]
crossterm.workspace = true
memmap2.workspace = true
memchr.workspace = true
libc.workspace = true
backtrace.workspace = true
roc_std.workspace = true
roc_std_heap.workspace = true
roc_command.workspace = true
roc_file.workspace = true
roc_io_error.workspace = true
roc_http.workspace = true
roc_stdio.workspace = true
roc_env.workspace = true
roc_random.workspace = true
roc_sqlite.workspace = true
hyper.workspace = true
hyper-rustls.workspace = true
tokio.workspace = true
bytes.workspace = true
http-body-util.workspace = true
hyper-util.workspace = true