-
Notifications
You must be signed in to change notification settings - Fork 32
/
Cargo.toml
51 lines (47 loc) · 1.45 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
[workspace]
resolver = "2"
members = [
"crates/roc_command",
"crates/roc_host",
"crates/roc_host_lib",
"crates/roc_file",
"crates/roc_host_bin",
"crates/roc_tcp",
"crates/roc_io_error",
"crates/roc_stdio",
"crates/roc_env",
]
[workspace.package]
authors = ["The Roc Contributors"]
edition = "2021"
license = "UPL-1.0"
repository = "https://github.com/roc-lang/basic-cli"
version = "0.0.1"
[profile.release]
lto = true
strip = "debuginfo"
# You can comment this out if you hit a segmentation fault similar to the one in see issue github.com/roc-lang/roc/issues/6121
# Setting this to 1 should improve execution speed by making things easier to optimize for LLVM.
codegen-units = 1
[workspace.dependencies]
roc_std = { git = "https://github.com/roc-lang/roc.git" }
roc_std_heap = { git = "https://github.com/roc-lang/roc.git" }
roc_command = { path = "crates/roc_command" }
roc_file = { path = "crates/roc_file" }
roc_host = { path = "crates/roc_host" }
roc_tcp = { path = "crates/roc_tcp" }
roc_io_error = { path = "crates/roc_io_error" }
roc_stdio = { path = "crates/roc_stdio" }
roc_env = { path = "crates/roc_env" }
memchr = "=2.7.4"
hyper = { version = "=0.14.27", default-features = false, features = [
"http1",
"client",
] }
hyper-rustls = { version = "=0.24.2", default-features = false, features = [
"http1",
"tls12",
"native-tokio",
] }
tokio = { version = "=1.31.0", default-features = false }
sys-locale = "0.3.2"