mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 04:27:02 +01:00
ripping out some extra packages (#3146)
This commit is contained in:
parent
5a709520dc
commit
151a9ad90f
17
Cargo.lock
generated
17
Cargo.lock
generated
|
@ -407,18 +407,6 @@ dependencies = [
|
|||
"tracing",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "axum-auth"
|
||||
version = "0.7.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8169113a185f54f68614fcfc3581df585d30bf8542bcb99496990e1025e4120a"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"axum-core 0.4.5",
|
||||
"base64 0.21.7",
|
||||
"http 1.1.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "axum-core"
|
||||
version = "0.3.4"
|
||||
|
@ -1238,7 +1226,6 @@ dependencies = [
|
|||
"serde",
|
||||
"serde_json",
|
||||
"sketching",
|
||||
"tempfile",
|
||||
"tokio",
|
||||
"tokio-util",
|
||||
"toml",
|
||||
|
@ -3467,7 +3454,6 @@ dependencies = [
|
|||
"askama_axum",
|
||||
"async-trait",
|
||||
"axum 0.7.7",
|
||||
"axum-auth",
|
||||
"axum-extra",
|
||||
"axum-htmx",
|
||||
"axum-macros",
|
||||
|
@ -3530,7 +3516,6 @@ dependencies = [
|
|||
"criterion",
|
||||
"dhat",
|
||||
"dyn-clone",
|
||||
"enum-iterator",
|
||||
"fernet",
|
||||
"futures",
|
||||
"hashbrown 0.14.5",
|
||||
|
@ -3598,7 +3583,6 @@ dependencies = [
|
|||
"fantoccini",
|
||||
"futures",
|
||||
"http 1.1.0",
|
||||
"hyper-tls",
|
||||
"jsonschema",
|
||||
"kanidm_build_profiles",
|
||||
"kanidm_client",
|
||||
|
@ -3615,7 +3599,6 @@ dependencies = [
|
|||
"serde",
|
||||
"serde_json",
|
||||
"sketching",
|
||||
"tempfile",
|
||||
"testkit-macros",
|
||||
"time",
|
||||
"tokio",
|
||||
|
|
|
@ -190,7 +190,6 @@ hyper = { version = "1.5.0", features = [
|
|||
"full",
|
||||
] } # hyper full includes client/server/http2
|
||||
hyper-util = { version = "0.1.9", features = ["server", "tokio"] }
|
||||
hyper-tls = "0.6.0"
|
||||
idlset = "^0.2.5"
|
||||
image = { version = "0.24.9", default-features = false, features = [
|
||||
"gif",
|
||||
|
|
|
@ -2,7 +2,7 @@ use std::env;
|
|||
|
||||
fn main() {
|
||||
// Allows openssl3 as a cfg flag
|
||||
println!("cargo::rustc-check-cfg=cfg(openssl3)");
|
||||
println!("cargo:rustc-check-cfg=cfg(openssl3)");
|
||||
println!("cargo:rerun-if-changed=build.rs");
|
||||
println!("cargo:rerun-if-env-changed=DEP_OPENSSL_VERSION_NUMBER");
|
||||
|
||||
|
|
|
@ -27,9 +27,9 @@ time = { workspace = true, features = [
|
|||
"parsing",
|
||||
"serde",
|
||||
] }
|
||||
tracing = { workspace = true }
|
||||
url = { workspace = true, features = ["serde"] }
|
||||
utoipa = { workspace = true }
|
||||
uuid = { workspace = true, features = ["serde"] }
|
||||
[dev-dependencies]
|
||||
tracing = { workspace = true }
|
||||
tracing-subscriber = { workspace = true }
|
||||
|
|
|
@ -30,7 +30,6 @@ num_enum = { workspace = true }
|
|||
scim_proto = { workspace = true }
|
||||
serde = { workspace = true, features = ["derive"] }
|
||||
serde_json = { workspace = true }
|
||||
serde_urlencoded = { workspace = true }
|
||||
serde_with = { workspace = true, features = ["time_0_3", "base64", "hex"] }
|
||||
smartstring = { workspace = true, features = ["serde"] }
|
||||
time = { workspace = true, features = ["serde", "std"] }
|
||||
|
@ -45,3 +44,4 @@ sshkeys = { workspace = true }
|
|||
|
||||
[dev-dependencies]
|
||||
enum-iterator = { workspace = true }
|
||||
serde_urlencoded = { workspace = true }
|
||||
|
|
|
@ -26,7 +26,6 @@ askama = { workspace = true, features = ["with-axum"] }
|
|||
askama_axum = { workspace = true }
|
||||
axum = { workspace = true }
|
||||
axum-htmx = { workspace = true }
|
||||
axum-auth = "0.7.0"
|
||||
axum-extra = { version = "0.9.4", features = ["cookie"] }
|
||||
axum-macros = "0.4.1"
|
||||
axum-server = { version = "0.7.1", features = ["tls-openssl"] }
|
||||
|
|
|
@ -38,7 +38,6 @@ serde = { workspace = true, features = ["derive"] }
|
|||
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "signal"] }
|
||||
tokio-util = { workspace = true, features = ["codec"] }
|
||||
toml = { workspace = true }
|
||||
tempfile = { workspace = true }
|
||||
tracing = { workspace = true }
|
||||
serde_json.workspace = true
|
||||
|
||||
|
|
|
@ -39,7 +39,6 @@ compact_jwt = { workspace = true, features = ["openssl", "hsm-crypto"] }
|
|||
concread = { workspace = true }
|
||||
dhat = { workspace = true, optional = true }
|
||||
dyn-clone = { workspace = true }
|
||||
enum-iterator = { workspace = true }
|
||||
fernet = { workspace = true, features = ["fernet_danger_timestamps"] }
|
||||
# futures-util = { workspace = true }
|
||||
hashbrown = { workspace = true }
|
||||
|
|
|
@ -25,7 +25,6 @@ webdriver = []
|
|||
dev-oauth2-device-flow = []
|
||||
|
||||
[dependencies]
|
||||
hyper-tls = { workspace = true }
|
||||
http = { workspace = true }
|
||||
kanidm_client = { workspace = true }
|
||||
kanidm_proto = { workspace = true }
|
||||
|
@ -37,7 +36,6 @@ regex = { workspace = true }
|
|||
reqwest = { workspace = true, default-features = false, features = ["cookies"] }
|
||||
serde = { workspace = true }
|
||||
sketching = { workspace = true }
|
||||
tempfile = { workspace = true }
|
||||
testkit-macros = { workspace = true }
|
||||
tokio = { workspace = true, features = [
|
||||
"net",
|
||||
|
|
|
@ -90,9 +90,17 @@ maintainer = "James Hodgkinson <james@terminaloutcomes.com>"
|
|||
depends = ["libc6", "libudev1", "libssl3 | libssl3t64"]
|
||||
section = "admin"
|
||||
priority = "optional"
|
||||
changelog = "../../target/debian/changelog" # Generated by packaging scripts
|
||||
changelog = "../../target/debian/changelog" # Generated by packaging scripts
|
||||
assets = [
|
||||
[ "target/release/kanidm", "usr/bin/", "755" ],
|
||||
[ "../../examples/config", "usr/share/kanidm/", "444" ],
|
||||
[
|
||||
"target/release/kanidm",
|
||||
"usr/bin/",
|
||||
"755",
|
||||
],
|
||||
[
|
||||
"../../examples/config",
|
||||
"usr/share/kanidm/",
|
||||
"444",
|
||||
],
|
||||
]
|
||||
maintainer-scripts = "debian/"
|
||||
|
|
Loading…
Reference in a new issue