feat: migrate to Rust 2024 edition

pull/874/head
Stephan Seitz 2025-03-15 18:36:36 +07:00 committed by Stephan Seitz
parent aa14ee9ee9
commit a92e3612e0
2 changed files with 2 additions and 2 deletions

@ -5,7 +5,7 @@ version = "0.3.3"
keywords = ["incremental", "parsing", "lisp"]
categories = ["parsing", "text-editors"]
repository = "https://github.com/theHamsta/tree-sitter-commonlisp"
edition = "2018"
edition = "2024"
authors = ["Stephan Seitz"]
license = "MIT"

@ -17,7 +17,7 @@
use tree_sitter_language::LanguageFn;
extern "C" {
unsafe extern "C" {
fn tree_sitter_commonlisp() -> *const ();
}