-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 936 Bytes
/
Cargo.toml
File metadata and controls
38 lines (35 loc) · 936 Bytes
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
[package]
name = "tx3-lsp"
description = "Language Server Protocol implementation for tx3-lang"
authors = ["TxPipe"]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/tx3-lang/lsp"
version = "0.8.0"
keywords = ["blockchain", "cardano", "utxo", "dsl"]
homepage = "https://github.com/tx3-lang/lsp"
readme = "README.md"
[dependencies]
tokio = { version = "1.44.1", features = ["full"] }
tower-lsp = "0.20.0"
tower = { version = "0.4", features = ["util"] }
dashmap = "6.1.0"
ropey = "1.6.1"
tx3-lang = "0.14.2"
tx3-tir = "0.14.2"
pest = "2.7.15"
miette = "7.5.0"
serde_json = "1.0.140"
hex = "0.4.3"
thiserror = "2.0.12"
url = "2.5.4"
clap = { version = "4.5", features = ["derive"] }
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[workspace.metadata.release]
push = false
publish = false
tag-name = "v{{version}}"
pre-release-commit-message = "release: v{{version}}"