swarnim-deepsource / dummy-rust-test

Errors detected in .deepsource.toml. Additional properties are not allowed ('cyclomaticcomplexitythreshold' was unexpected) in meta for analyzer "rust" (Docs)

Audit required: Exposure of sensitive headers RS-A1004
Security
Major
1 occurrence in this check
Exposure of sensitive header: SERVER
124fn header() {
125use http::header::{HeaderMap, SERVER, SET_COOKIE};
126let mut h = HeaderMap::new();
127    h.insert(SERVER, 5.into());128    h.insert(SET_COOKIE, 42.into());
129}