Files
static-web-server/build.rs
Jose Quintana 7ca2785c82 chore: update dependencies 26.05.2025 and MSRV 1.81.0 (#545)
- BREAKING: End support for unmaintained Windows 7, 8, 8.1 platforms as previously announced on v2.36.1.
- SECURITY (RUSTSEC-2024-0437): Crash due to uncontrolled recursion in protobuf crate was temporarily solved in the previous release. However, this PR applies the dependency patches recently available.
- RESTORED: `experimental` Cargo feature for metrics and in-memory cache.
2025-05-27 00:25:29 +02:00

7 lines
123 B
Rust

use shadow_rs::{SdResult, ShadowBuilder};
fn main() -> SdResult<()> {
ShadowBuilder::builder().build()?;
Ok(())
}