-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (56 loc) · 1.69 KB
/
Copy pathCargo.toml
File metadata and controls
65 lines (56 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "simplicityhl-lsp"
version = "0.7.0"
edition = "2021"
rust-version = "1.85.0"
description = "Language Server Protocol (LSP) server for SimplicityHL."
license = "MIT OR Apache-2.0"
repository = "https://github.com/BlockstreamResearch/simplicityhl-lsp"
homepage = "https://github.com/BlockstreamResearch/simplicityhl-lsp"
readme = "README.md"
documentation = "https://docs.rs/simplicityhl-lsp"
keywords = ["simplicity", "liquid", "bitcoin", "elements", "lsp"]
[dependencies]
tokio = { version = "1.47.1", features = [
"rt-multi-thread",
"macros",
"io-std",
"io-util",
"sync",
] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.143"
# Deserialize-only: the server reads Simplex.toml and never writes it.
toml = { version = "1.1", default-features = false, features = ["parse", "serde"] }
tower-lsp-server = "0.22.1"
env_logger = { version = "0.11.8", default-features = false }
thiserror = "2.0.17"
ropey = "1.6.1"
miniscript = "12"
simplicityhl = { version = "0.7.0", features = ["docs"] }
nom = "8.0.0"
[dev-dependencies]
tempfile = "3.23.0"
[profile.release]
lto = "thin"
strip = true
[lints.rust]
unsafe_code = "deny"
unused_variables = "warn"
dead_code = "warn"
unreachable_code = "warn"
unused_mut = "warn"
[lints.clippy]
pedantic = "warn"
[workspace.metadata.rbmt.toolchains]
nightly = "nightly-2025-08-23"
stable = "1.95.0"
[package.metadata.rbmt.lint]
allowed_duplicates = [
# version mismatch (1.* and 2.*) within the dependencies of tower-lsp-server
"bitflags",
# version mismatch (0.14.* and 0.15.*) between tower-lsp-server and chumsky
"hashbrown",
# versions match, but are split across different dependency trees
"memchr",
]