mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-05 04:47:58 +00:00
7 lines
254 B
TOML
7 lines
254 B
TOML
disallowed-methods = [
|
|
# std::process::Command::new may inadvertly run executables from the current working directory
|
|
"std::process::Command::new",
|
|
# Setting environment variables can cause issues with non-rust code
|
|
"std::env::set_var"
|
|
]
|