This project might be open to known security vulnerabilities , which can be prevented by tightening the version range of affected dependencies. Find detailed information at the bottom .
Crate rudof_generate
Dependencies (1 total, 1 possibly insecure)
Crate Required Latest Status tokio ⚠️ ^1.0
1.48.0
maybe insecure
Crate dctap
No external dependencies! 🙌
Crate iri_s
Dependencies (1 total, all up-to-date)
Crate Required Latest Status reqwest ^0.12
0.12.24
up to date
Crate mie
Dependencies (2 total, all up-to-date)
Crate prefixmap
Dependencies (1 total, all up-to-date)
Crate Required Latest Status indexmap ^2
2.12.0
up to date
Crate pyrudof
Dependencies (2 total, all up-to-date)
Crate Required Latest Status pyo3 ^0.26.0
0.26.0
up to date pythonize ^0.26.0
0.26.0
up to date
Crate rbe
No external dependencies! 🙌
Crate rbe_testsuite
Dev dependencies (2 total, all up-to-date)
Crate rdf_config
Dependencies (4 total, 1 outdated)
Dev dependencies (1 total, all up-to-date)
Crate Required Latest Status indoc ^2
2.0.6
up to date
Crate rudof_cli
No external dependencies! 🙌
Crate rudof_lib
Dependencies (2 total, 1 outdated)
Crate Required Latest Status thiserror ^2.0
2.0.17
up to date toml ^0.8
0.9.8
out of date
Crate rudof_mcp
Dependencies (11 total, 2 outdated)
Crate shacl_ast
Dependencies (3 total, all up-to-date)
Crate shacl_ir
No external dependencies! 🙌
Crate shacl_rdf
No external dependencies! 🙌
Crate shacl_validation
Dev dependencies (1 total, all up-to-date)
Crate shapes_comparator
No external dependencies! 🙌
Crate shapes_converter
Dependencies (4 total, 1 outdated)
Crate Required Latest Status chrono ^0.4.42
0.4.42
up to date minijinja ^2.12.0
2.12.0
up to date thiserror ^2.0
2.0.17
up to date toml ^0.8
0.9.8
out of date
Crate shex_ast
No external dependencies! 🙌
Crate shex_testsuite
Dependencies (3 total, 1 outdated)
Crate Required Latest Status anyhow ^1.0
1.0.100
up to date thiserror ^2.0
2.0.17
up to date toml ^0.8
0.9.8
out of date
Crate shex_validation
No external dependencies! 🙌
Crate sparql_service
Dependencies (2 total, all up-to-date)
Crate srdf
Dependencies (1 total, all up-to-date)
Dev dependencies (1 total, all up-to-date)
Crate Required Latest Status tokio ^1.47
1.48.0
up to date
Security Vulnerabilities tokio
: reject_remote_clients Configuration corruptionRUSTSEC-2023-0001
On Windows, configuring a named pipe server with pipe_mode will force ServerOptions ::reject_remote_clients as false
.
This drops any intended explicit configuration for the reject_remote_clients that may have been set as true
previously.
The default setting of reject_remote_clients is normally true
meaning the default is also overridden as false
.
Workarounds
Ensure that pipe_mode is set first after initializing a ServerOptions . For example:
let mut opts = ServerOptions::new();
opts.pipe_mode(PipeMode::Message);
opts.reject_remote_clients(true);
Patched
>=1.18.4, <1.19.0
>=1.20.3, <1.21.0
>=1.23.1