-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rework the backend project structure.
This cleans up some old cruft.
- Loading branch information
1 parent
70e8282
commit ec1aea4
Showing
16 changed files
with
544 additions
and
797 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#[cfg(all(target_arch = "aarch64", not(feature = "force_software")))] | ||
pub(crate) mod aarch64; | ||
|
||
#[cfg(all( | ||
target_arch = "riscv64", | ||
feature = "experimental_riscv", | ||
not(feature = "force_software") | ||
))] | ||
pub(crate) mod riscv64; | ||
|
||
#[cfg(all( | ||
any(target_arch = "x86_64", target_arch = "x86"), | ||
not(feature = "force_software") | ||
))] | ||
pub(crate) mod x86; | ||
|
||
#[cfg(any( | ||
not(any( | ||
all( | ||
any(target_arch = "x86_64", target_arch = "x86"), | ||
target_feature = "sse2", | ||
target_feature = "aes", | ||
), | ||
all(target_arch = "riscv64", feature = "experimental_riscv"), | ||
all( | ||
target_arch = "aarch64", | ||
target_feature = "neon", | ||
target_feature = "aes", | ||
), | ||
)), | ||
feature = "force_runtime_detection", | ||
feature = "force_software", | ||
feature = "verification", | ||
))] | ||
pub(crate) mod soft; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.