-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
106 lines (95 loc) Β· 2.85 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# π»ββοΈπ ume: Easy, self-hostable, and flexible image host made in Rust
# Copyright 2021-2024 Noel Towa <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
[package]
name = "ume"
description = "π»ββοΈπ Easy, self-hostable, and flexible image host made in Rust"
version = "4.0.6"
authors = ["Noel Towa <[email protected]>"]
edition = "2021"
rust-version = "1.78"
repository = "https://github.com/auguwu/ume"
[[bin]]
name = "ume"
path = "./src/bin/ume.rs"
[dependencies]
arboard = "3.4.0"
async-trait = "0.1.80"
axum = { version = "0.7.7", features = ["macros"] }
axum-extra = { version = "0.9.3", features = ["typed-header"] }
axum-server = { version = "0.6.0", features = ["tls-rustls"] }
bson = "2.10.0"
chrono = "0.4.38"
clap = { version = "4.5.4", features = ["derive", "env"] }
clap_complete = "4.5.2"
color-eyre = { version = "0.6.3", features = ["issue-url", "tracing-error"] }
dotenvy = "0.15.7"
eyre = "0.6.12"
hcl-rs = "0.18.0"
humantime = "2.1.0"
image = "0.25.1"
mimalloc = "0.1.41"
mime = "0.3.17"
multer = "3.1.0"
num_cpus = "1.16.0"
opentelemetry = "0.22.0"
opentelemetry-otlp = { version = "0.15.0", features = ["http-proto"] }
opentelemetry_sdk = "0.22.1"
owo-colors = "4.0.0"
rand = "0.8.5"
remi = "0.9.0"
reqwest = { version = "0.12.4", features = ["multipart", "json"] }
sentry = "0.34.0"
sentry-tower = { version = "0.34.0", features = ["axum", "http"] }
sentry-tracing = "0.34.0"
serde = { version = "1.0.200", features = ["derive"] }
serde_json = "1.0.116"
tokio = { version = "1.37.0", features = ["full"] }
tokio-util = { version = "0.7.11", features = ["io-util"] }
tower-http = { version = "0.6.0", features = ["catch-panic"] }
tracing = "0.1.40"
tracing-opentelemetry = "0.23.0"
tracing-subscriber = "0.3.18"
url = "2.5.0"
which = "7.0.0"
[dependencies.azalia]
version = "0.1.0"
git = "https://github.com/Noelware/azalia"
rev = "bac66caead3a068a2e7796473af111485b7dcb49"
features = [
"lazy",
"regex",
"config",
"config-derive",
"log",
"log-writers",
"remi",
"remi-all",
"remi-serde",
"remi-tracing",
"remi-export-crates",
"serde",
"serde-tracing",
]
[build-dependencies]
chrono = "0.4.38"
rustc_version = "0.4.0"
which = "7.0.0"
[dev-dependencies]
quote = "1.0.36"
syn = "2.0.60"
[package.metadata.cargo-machete]
ignored = [
"hcl-rs", # crate name is `hcl` but crates.io name is `hcl-rs`
]