-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (63 loc) · 1.98 KB
/
Cargo.toml
File metadata and controls
66 lines (63 loc) · 1.98 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[workspace]
resolver = "2"
members = [
"crates/roc_command",
"crates/roc_host",
"crates/roc_host_lib",
"crates/roc_file",
"crates/roc_host_bin",
"crates/roc_http",
"crates/roc_io_error",
"crates/roc_stdio",
"crates/roc_env",
"crates/roc_sqlite",
"crates/roc_random",
]
[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_http = { path = "crates/roc_http" }
roc_io_error = { path = "crates/roc_io_error" }
roc_stdio = { path = "crates/roc_stdio" }
roc_env = { path = "crates/roc_env" }
roc_random = { path = "crates/roc_random" }
roc_sqlite = { path = "crates/roc_sqlite" }
memchr = "=2.7.4"
hyper = { version = "=1.6.0", default-features = false, features = [
"http1",
"client",
] }
hyper-util = "=0.1.12"
hyper-rustls = { version = "=0.27.6", default-features = false, features = [
"http1",
"tls12",
"native-tokio",
"rustls-native-certs", # required for with_native_roots
"ring", # required for with_native_roots
] }
http-body-util = "=0.1.3"
tokio = { version = "=1.45.0", default-features = false }
sys-locale = "=0.3.2"
bytes = "=1.11.1"
crossterm = "=0.29.0"
memmap2 = "=0.9.4"
libc = "=0.2.172"
backtrace = "=0.3.75"
libsqlite3-sys = { version = "=0.33.0", features = ["bundled"] }
thread_local = "=1.1.8"
getrandom = { version = "0.3.3", features = [ "std" ] }