-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (50 loc) · 1.5 KB
/
Cargo.toml
File metadata and controls
58 lines (50 loc) · 1.5 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
[workspace]
resolver = "2"
members = [
"crates/solscript-ast",
"crates/solscript-parser",
"crates/solscript-typeck",
"crates/solscript-codegen",
"crates/solscript-cli",
"crates/solscript-lsp",
"crates/solscript-bpf",
]
exclude = [
"playground",
]
[workspace.package]
version = "0.1.1"
edition = "2021"
license = "MIT"
repository = "https://github.com/cryptuon/solscript"
homepage = "https://github.com/cryptuon/solscript"
documentation = "https://docs.rs/solscript-cli"
rust-version = "1.83"
keywords = ["solana", "solidity", "blockchain", "smart-contracts", "compiler"]
categories = ["compilers", "development-tools", "cryptography::cryptocurrencies"]
[workspace.dependencies]
# Internal crates
solscript-ast = { version = "0.1.1", path = "crates/solscript-ast" }
solscript-parser = { version = "0.1.1", path = "crates/solscript-parser" }
solscript-typeck = { version = "0.1.1", path = "crates/solscript-typeck" }
solscript-codegen = { version = "0.1.1", path = "crates/solscript-codegen" }
solscript-bpf = { version = "0.1.1", path = "crates/solscript-bpf" }
# Parsing
pest = "2.7"
pest_derive = "2.7"
# Error handling
thiserror = "1.0"
miette = { version = "7.0", features = ["fancy"] }
# CLI
clap = { version = "4.4", features = ["derive"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
# Utilities
indexmap = "2.0"
smol_str = { version = "0.2", features = ["serde"] }
logos = "0.14"
# Testing
pretty_assertions = "1.4"
insta = "1.34"