-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
46 lines (41 loc) · 1.09 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
[package]
name = "instrumentality"
version = "0.3.0"
edition = "2021"
description = "A data aggregation platform."
authors = ["James <james \"at\" berserksystems.com>"]
readme = "README.md"
license = "AGPL-3.0"
repository = "https://github.com/berserksystems/instrumentality/"
exclude = ["assets/", ".github/"]
[[bin]]
name = "instrumentality"
[lib]
name = "instrumentality"
path = "src/lib.rs"
[profile.release]
strip = true
lto = true
codegen-units = 1
[dependencies]
axum = "0.6"
axum-server = { version = "0.5", features = ["tls-rustls"] }
tower = { version = "0.4", features = ["timeout"] }
tower-http = { version = "0.4", features = ["set-header"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tokio = "1.28"
tokio-stream = "0.1"
futures-util = "0.3"
mongodb = "2.5.0"
toml = "0.7"
chrono = { version = "0.4", default_features = false, features = ["serde"] }
serde = "1.0"
getrandom = "0.2"
uuid = { version = "1.3", features = ["v4"] }
sha2 = "0.10"
[dev-dependencies]
regex = "1.8"
hyper = { version = "0.14", features = ["client"] }
serde_json = "1.0"
mime = "0.3"