In cases when rlang is installed but glue is not installed the following code generates an error: ```r rlang::local_use_cli(inline = TRUE) url = "https://google.com" rlang::inform("{.url {url}}") ## Error in cli_opts[["inline"]] : subscript out of bounds ``` <details><summary>sessionInfo()</summary> ``` R version 4.3.3 (2024-02-29) Platform: aarch64-apple-darwin23.2.0 (64-bit) Running under: macOS Sonoma 14.6.1 Matrix products: default BLAS: /opt/homebrew/Cellar/openblas/0.3.28/lib/libopenblasp-r0.3.28.dylib LAPACK: /opt/homebrew/Cellar/r/4.3.3/lib/R/lib/libRlapack.dylib; LAPACK version 3.11.0 locale: [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8 time zone: Europe/Zurich tzcode source: internal attached base packages: [1] stats graphics grDevices utils datasets methods base loaded via a namespace (and not attached): [1] compiler_4.3.3 tools_4.3.3 rlang_1.1.4 renv_1.0.0 ``` <details>