mirror of
https://github.com/static-web-server/static-web-server.git
synced 2026-01-24 20:56:50 +00:00
- 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.
7 lines
123 B
Rust
7 lines
123 B
Rust
use shadow_rs::{SdResult, ShadowBuilder};
|
|
|
|
fn main() -> SdResult<()> {
|
|
ShadowBuilder::builder().build()?;
|
|
Ok(())
|
|
}
|