summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 6bc76458a16c3dfa6bb7f5dce11aa8fd510d73b8 (plain)
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
[package]
name = "ixi-ci-server"
version = "0.0.1"
authors = [ "iximeow <me@iximeow.net>" ]
license = "0BSD"
edition = "2021"

[lib]

[workspace]
members = [
  "ci-lib-core",
  "ci-lib-native",
  "ci-runner",
  "ci-driver",
  "ci-web-server",
  "ci-ctl",
]
exclude = [
  # wasm target should not be built for x86, so exclude it
  "ci-wasm-frontend",
  # and do not try treating builds of rust projects using cargo as a workspace item
  "tmpdir",
]

[dependencies]
lazy_static = "*"
axum = { version = "*" }
axum-extra = { version = "*", features = ["async-read-body"] }
axum-server = { version = "*", features = ["tls-rustls"] }
handlebars = "*"
libc = "*"
serde = "*"
serde_derive = "*"
serde_json = "*"
rand = "*"
tokio = { version = "*", features = ["full"] }
console-subscriber = "*"
tokio-console = "*"
tokio-stream = "*"
hyper = "*"
futures-util = "*"
axum-macros = "*"
lettre = "*"
base64 = "*"
tracing = "*"
tracing-subscriber = "*"
http-body = "*"
rusqlite = "*"
http = "*"
hmac = "*"
hex = "*"
sha2 = "*"
reqwest = { version = "*", features = ["rustls-tls-native-roots"] }
clap = { version = "*", features = ["derive"] }
rlua = "*"
chrono = "*"