61 releases (26 stable)

2.7.0-dev.0 May 22, 2024
2.6.3 Mar 12, 2024
2.6.0-rc.1 Feb 14, 2024
2.5.0-dev.0 Dec 26, 2023
0.1.0 Jan 4, 2023

#1033 in Magic Beans

Download history 956/week @ 2024-02-09 812/week @ 2024-02-16 685/week @ 2024-02-23 991/week @ 2024-03-01 1064/week @ 2024-03-08 527/week @ 2024-03-15 453/week @ 2024-03-22 542/week @ 2024-03-29 551/week @ 2024-04-05 418/week @ 2024-04-12 469/week @ 2024-04-19 504/week @ 2024-04-26 617/week @ 2024-05-03 673/week @ 2024-05-10 914/week @ 2024-05-17 793/week @ 2024-05-24

3,033 downloads per month
Used in cairo-language-server

Custom license

5MB
90K SLoC

CairoLS

Implements the LSP protocol over stdin/out.

Running vanilla

This is basically the source code of the cairo-language-server and scarb cairo-language-server binaries.

fn main() {
    cairo_lang_language_server::start();
}

Running with customizations

Due to the immaturity of various Cairo compiler parts (especially around potentially dynamically-loadable things), for some projects it might be necessary to provide a custom build of CairoLS that includes custom modifications to the compiler. The start_with_tricks function allows building a customized build of CairoLS that supports project-specific features. See the Tricks struct documentation for available customizations.

use cairo_lang_language_server::Tricks;

fn main() {
    let mut tricks = Tricks::default();
    tricks.extra_plugin_suites = Some(&|| vec![dojo_plugin_suite()]);
    cairo_lang_language_server::start_with_tricks(tricks);
}

Dependencies

~25–41MB
~604K SLoC