-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
85 lines (82 loc) · 1.82 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[package]
name = "miq"
version = "0.1.0"
edition = "2021"
authors = [
"Fernando Ayats <[email protected]>",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
opt-level = "s"
strip = "debuginfo"
lto = "thin"
[dependencies]
diesel = { version = "2.0.3", features = [
"sqlite",
"without-deprecated",
] }
bytes = "1.4.0"
clap = { version = "4.1.8", features = [
"derive",
"env",
"cargo",
] }
reqwest = { version = "0.11.14", default-features = false, features = [
"rustls-tls",
"stream",
] }
schemars = "0.8.12"
serde = { version = "1.0.154", features = [
"derive",
] }
serde_json = "1.0.94"
toml = "0.7.2"
libsqlite3-sys = { version = "0.25.2", default-features = false, features = [
"pkg-config",
"min_sqlite_version_3_6_8",
"bundled",
] }
tempfile = "3.4.0"
color-eyre = { version = "0.6.2", features = [
"tracing-error",
] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = [
"env-filter",
] }
daggy = "0.8.0"
educe = "0.4.21"
diesel_migrations = { version = "2.0.0", features = [
"sqlite",
] }
mlua = { version = "0.9.0-beta.2", features = [
"serialize",
"lua54",
"vendored",
"macros",
] }
fnv = "1.0.7"
url = { version = "2.3.1", features = [
"serde",
] }
textwrap = "0.16.0"
tracing-error = "0.2.0"
ambassador = { version = "0.3.5", default-features = false }
derive_builder = "0.12.0"
async-trait = "0.1.68"
tokio = { version = "1.28.2", features = [
"full",
] }
futures = "0.3.28"
tokio-process-stream = "0.4.0"
owo-colors = "3.5.0"
dialoguer = { version = "0.10.4", default-features = false }
nix = "0.26.2"
uninit = "0.5.1"
once_cell = "1.18.0"
file-lock = "2.1.9"
futures-util = "0.3.28"
indicatif = { version = "0.17.5", features = [
"tokio",
] }
num_cpus = "1.16.0"