forked from isambard-sc/conch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (40 loc) · 1.21 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
# SPDX-FileCopyrightText: © 2024 Matt Williams <[email protected]>
# SPDX-License-Identifier: MIT
[package]
name = "conch"
version = "0.1.9"
edition = "2021"
license = "MIT"
build = "build.rs"
[dependencies]
anyhow = "1.0"
axum = { version = "0.7", features = ["tracing", "query"] }
axum-extra = { version = "0.9", features = ["typed-header"] }
clap = { version = "4.5", features = ["derive"] }
config = { version = "0.14", default-features = false, features = ["toml"] }
http-serde = "2.1"
jsonwebtoken = "9.3"
openidconnect = "3.5"
rand_core = "0.6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
ssh-key = { version = "0.6", features = ["dsa", "ecdsa", "ed25519", "rsa", "serde"] }
tokio = { version = "1.40", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
url = "2.5"
[build-dependencies]
built = { version = "0.7", default-features = false, features = ["git2"] }
[profile.release]
strip = true
lto = true
codegen-units = 1
[lints.rust]
unsafe_code = "forbid"
unused_crate_dependencies = "warn"
[lints.clippy]
dbg_macro = "deny"
unwrap_used = "deny"
expect_used = "deny"
[package.metadata.clippy]
allow-dbg-in-tests = true