mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 04:27:02 +01:00
parent
d3457ff3c1
commit
d4c5a6f4a9
|
@ -45,6 +45,7 @@
|
|||
- Chris Olstrom (colstrom)
|
||||
- Christopher-Robin (cebbinghaus)
|
||||
- Fabian Kammel (datosh)
|
||||
- Andris Raugulis (arthepsy)
|
||||
|
||||
## Acknowledgements
|
||||
|
||||
|
|
|
@ -3,6 +3,9 @@ use std::fs::Metadata;
|
|||
#[cfg(target_os = "freebsd")]
|
||||
use std::os::freebsd::fs::MetadataExt;
|
||||
|
||||
#[cfg(target_os = "openbsd")]
|
||||
use std::os::openbsd::fs::MetadataExt;
|
||||
|
||||
#[cfg(target_os = "linux")]
|
||||
use std::os::linux::fs::MetadataExt;
|
||||
|
||||
|
|
|
@ -93,6 +93,10 @@ features = ["mozilla"]
|
|||
workspace = true
|
||||
features = ["mozilla"]
|
||||
|
||||
[target."cfg(target_os = \"openbsd\")".dependencies.webauthn-authenticator-rs]
|
||||
workspace = true
|
||||
features = ["mozilla"]
|
||||
|
||||
## Debian packaging
|
||||
[package.metadata.deb]
|
||||
name = "kanidm"
|
||||
|
|
|
@ -13,6 +13,11 @@ mod mozilla;
|
|||
#[cfg(target_os = "freebsd")]
|
||||
use mozilla::get_authenticator_backend;
|
||||
|
||||
#[cfg(target_os = "openbsd")]
|
||||
mod mozilla;
|
||||
#[cfg(target_os = "openbsd")]
|
||||
use mozilla::get_authenticator_backend;
|
||||
|
||||
#[cfg(target_os = "windows")]
|
||||
mod win10;
|
||||
#[cfg(target_os = "windows")]
|
||||
|
|
Loading…
Reference in a new issue