-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (39 loc) · 858 Bytes
/
Cargo.toml
File metadata and controls
44 lines (39 loc) · 858 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
[package]
name = "nimble"
version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "4.4.6", features = ["derive"] }
miette = { version = "5.10.0", features = ["fancy"] }
thiserror = "1.0.49"
colored = "2.0.4"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
reqwest = { version = "0.11.22", features = ["blocking"] }
regex = "1.10.0"
rand = "0.8.5"
rustyline = "11.0.0"
owo-colors = "3.5.0"
libffi = "3"
libloading = "0.8"
# JIT Dependencies
cranelift-codegen = "0.100.0"
cranelift-frontend = "0.100.0"
cranelift-module = "0.100.0"
cranelift-jit = "0.100.0"
cranelift-native = "0.100.0"
[lib]
name = "nimble"
path = "src/lib.rs"
[profile.dev]
opt-level = 1
debug = true
incremental = true
lto = false
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true
incremental = false