-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (41 loc) · 1.04 KB
/
Copy pathCargo.toml
File metadata and controls
47 lines (41 loc) · 1.04 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
[workspace]
members = [
"packages/core",
"packages/cli",
"packages/lsp",
"packages/cargo-lumos",
]
resolver = "2"
[workspace.package]
version = "0.3.0"
edition = "2021"
rust-version = "1.82"
license = "MIT OR Apache-2.0"
repository = "https://github.com/getlumos/lumos"
homepage = "https://lumos-lang.org"
authors = ["RECTOR <rz1989s@gmail.com>"]
keywords = ["solana", "blockchain", "codegen", "borsh", "anchor"]
categories = ["development-tools", "parser-implementations", "command-line-utilities"]
readme = "README.md"
[workspace.dependencies]
# Parsing
syn = { version = "2.0", features = ["full", "extra-traits"] }
toml = "0.9"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Code generation
quote = "1.0"
proc-macro2 = { version = "1.0", features = ["span-locations"] }
# CLI
clap = { version = "4.5", features = ["derive", "cargo"] }
anyhow = "1.0"
thiserror = "2.0"
# Utilities
tracing = "0.1"
tracing-subscriber = "0.3"
semver = "1.0"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true