-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
86 lines (81 loc) · 2.95 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
# 🐻❄️📦 charted-server: Free, open source, and reliable Helm Chart registry made in Rust
# Copyright 2022-2024 Noelware, LLC. <[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.
[workspace]
resolver = "2"
members = [
"crates/*",
"crates/authz/*",
"crates/features/totp",
"crates/tatsuki/macros",
"internals",
]
[workspace.package]
version = "0.1.0"
authors = [
"Noel Towa <[email protected]>",
"Noelware, LLC. <[email protected]>",
"Spotlight <[email protected]>",
"John Burke <[email protected]>",
]
documentation = "https://charts.noelware.org/docs"
edition = "2021"
homepage = "https://charts.noelware.org"
license = "Apache-2.0"
publish = false
repository = "https://github.com/charted-dev/charted"
[workspace.dependencies]
argon2 = "0.5.3"
axum = { version = "0.7.7", features = ["macros", "http2"] }
charted-core = { version = "0.1.0", path = "./crates/core", default-features = false }
charted-database = { version = "0.1.0", path = "./crates/database" }
charted-types = { version = "0.1.0", path = "./crates/types", default-features = false }
chrono = { version = "0.4.23", features = ["serde"] }
clap = { version = "4.5.20", features = ["derive", "env"] }
clap_complete = "4.5.33"
derive_more = "1.0.0"
diesel = { version = "2.2.4", features = ["postgres", "sqlite", "chrono"] }
eyre = "0.6.12"
multer = "3.1.0"
opentelemetry = "0.26.0"
remi = "0.9.1"
remi-azure = { version = "0.9.1", features = ["tracing", "export-azure"] }
remi-fs = { version = "0.9.1", features = ["tracing"] }
remi-s3 = { version = "0.9.1", features = ["tracing", "export-crates"] }
schemars = "0.8.21"
semver = { version = "1.0.23", features = ["serde"] }
sentry = "0.34.0"
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.122"
serde_yaml_ng = "0.10.0"
tempfile = "3.12.0"
utoipa = { version = "5.1.1", features = ["chrono", "non_strict_integers"] }
testcontainers = "0.23.0"
testcontainers-modules = "0.11.0"
tokio = "1.39.3"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
url = "2.5.2"
which = "7.0.0"
[workspace.dependencies.azalia]
version = "0.1.0"
git = "https://github.com/Noelware/azalia"
rev = "e70e14b9df6cea6759031ef20f9e4829af588e6b"
[profile.release]
codegen-units = 1 # use a single codegen unit
opt-level = "s" # optimize for size
panic = "abort" # abort the process when a panic occurs
strip = true # strip all debug symbols
debug = 0 # disable debug information
lto = true # perform LTO on all crates (even our own)