Skip to content

Commit 6bbd1a2

Browse files
authored
Merge pull request #6 from distributed-lab/dev
feat: hover functionality, better completion
2 parents 97de09c + 37f3ff6 commit 6bbd1a2

9 files changed

Lines changed: 806 additions & 191 deletions

File tree

Cargo.toml

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,27 @@
11
[package]
22
name = "simplicityhl-lsp"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2024"
5+
rust-version = "1.87"
56

67
[dependencies]
78
tokio = { version = "1.47.1", features = ["full"] }
89
serde_json = "1.0.143"
910
tower-lsp-server = "0.22.1"
10-
simplicityhl = { git = "https://github.com/BlockstreamResearch/SimplicityHL.git", rev = "e68e1c6" }
11-
dashmap = "6.1.0"
12-
ropey = "1.6.1"
11+
1312
log = "0.4.28"
1413
env_logger = "0.11.8"
14+
15+
ropey = "1.6.1"
16+
miniscript = "12"
17+
simplicityhl = { git = "https://github.com/BlockstreamResearch/SimplicityHL.git", rev = "e68e1c6" }
18+
19+
[lints.rust]
20+
unsafe_code = "deny"
21+
unused_variables = "warn"
22+
dead_code = "warn"
23+
unreachable_code = "warn"
24+
unused_mut = "warn"
25+
26+
[lints.clippy]
27+
pedantic = "warn"

0 commit comments

Comments
 (0)