[package] name = "owl-ms-language-server" version = "0.1.2" edition = "2021" description = "An incremental analysis assistant for writing ontologies with the OWL Manchester Syntax" license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] clap = { version = "4.5.16", features = ["derive"] } dashmap = "5.5.3" log = "0.4.20" once_cell = "1.18.0" ropey = "1.6.1" serde = { version = "1.0.196", features = ["serde_derive"] } serde_json = "1.0.113" simple-logging = "2.0.2" tokio = {version = "1.34.0", features = ["macros", "rt-multi-thread", "io-util", "io-std"]} tower-lsp = "0.20.0" tree-sitter = "0.20.10" tree-sitter-owl-ms = "0.0.2" # some usefulle crates could be dashmap, im-rc [dev-dependencies] criterion = { version = "0.4", features = ["html_reports"] } [build-dependencies] cc = "1.0" [[bench]] name = "my_benchmark" harness = false