-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (63 loc) · 1.62 KB
/
Cargo.toml
File metadata and controls
73 lines (63 loc) · 1.62 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
66
67
68
69
70
71
72
73
[workspace]
resolver = "2"
members = [
".",
"crates/typr-core",
"crates/typr-cli",
"crates/typr-wasm",
]
[package]
name = "typr"
description = "A typed superset of R - transpiler and type checker"
keywords = ["R", "type-checker", "language", "transpiler"]
categories = ["compilers", "development-tools"]
readme = "README.md"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
[[bin]]
name = "typr"
path = "src/main.rs"
[dependencies]
typr-cli.workspace = true
[dev-dependencies]
typr-core.workspace = true
[workspace.package]
version = "0.4.28"
edition = "2021"
authors = ["Fabrice Hategekimana <fab.hatege15@gmail.com>"]
license = "Apache-2.0"
repository = "https://github.com/fabriceHategekimana/typr"
[workspace.dependencies]
nom = "8.0.0"
nom_locate = "5.0.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.133"
thiserror = "2.0.12"
miette = { version = "7.6.0", features = ["fancy"] }
rpds = "1.1.1"
indexmap = { version = "2.13.0", features = ["serde"] }
tap = "1.0.1"
rand = "0.10.0"
anyhow = "1.0.100"
countmap = "0.2"
clap = { version = "4.5", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
tower-lsp = "0.20"
lsp-types = "0.94"
rustyline = "17.0.2"
syntect = "5.3.0"
bincode = "1.3"
typr-core = { path = "crates/typr-core", version = "0.4" }
typr-cli = { path = "crates/typr-cli", version = "0.4" }
typr-wasm = { path = "crates/typr-wasm", version = "0.4" }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
[profile.release-wasm]
inherits = "release"
opt-level = "s"