diff --git a/modules/lang/rust/config.el b/modules/lang/rust/config.el index fcef45381..fb84053b6 100644 --- a/modules/lang/rust/config.el +++ b/modules/lang/rust/config.el @@ -10,10 +10,6 @@ (use-package! rustic :mode ("\\.rs$" . rustic-mode) :commands rustic-run-cargo-command rustic-cargo-outdated - :init - ;; `rustic-analyzer-command' is set to an absolute path by default, which - ;; makes rust-analyzer detection needlessly brittle. - (setq rustic-analyzer-command '("rust-analyzer")) :config (set-docsets! 'rustic-mode "Rust") (set-popup-rule! "^\\*rustic-compilation" :vslot -1) diff --git a/modules/lang/rust/packages.el b/modules/lang/rust/packages.el index 3b640d7ca..381421412 100644 --- a/modules/lang/rust/packages.el +++ b/modules/lang/rust/packages.el @@ -1,6 +1,6 @@ ;; -*- no-byte-compile: t; -*- ;;; lang/rust/packages.el -(package! rustic :pin "6dead0cdd4") +(package! rustic :pin "99396915c7") (unless (featurep! +lsp) (package! racer :pin "a0bdf778f0"))