1
1
mirror of https://github.com/oxalica/nil.git synced 2024-11-23 03:57:06 +03:00
nil/Cargo.toml

31 lines
468 B
TOML
Raw Normal View History

2022-07-18 05:39:12 +03:00
[package]
name = "nil"
version = "0.0.0"
edition = "2021"
2022-08-01 04:12:08 +03:00
license = "MIT OR Apache-2.0"
2022-07-18 05:39:12 +03:00
[dependencies]
2022-08-09 02:25:57 +03:00
either = "1.7.0"
2022-07-27 20:59:20 +03:00
indexmap = "1.9.1"
2022-07-18 19:14:23 +03:00
la-arena = "0.2.1"
2022-07-24 01:28:54 +03:00
ordered-float = "3.0.0"
2022-07-31 16:28:14 +03:00
phf = { version = "0.11.0", features = ["macros"] }
2022-07-19 19:26:03 +03:00
rowan = "0.15.6"
2022-07-19 19:16:53 +03:00
salsa = "0.17.0-pre.2"
2022-07-21 12:23:18 +03:00
smol_str = "0.1.23"
2022-07-18 19:14:23 +03:00
2022-07-24 00:13:56 +03:00
syntax = { path = "./syntax" }
2022-07-18 19:14:23 +03:00
[dev-dependencies]
2022-08-10 14:24:11 +03:00
anyhow = "1.0.60"
2022-07-18 19:14:23 +03:00
expect-test = "1.3.0"
2022-07-22 21:22:58 +03:00
[workspace]
members = [
"syntax",
"lsp",
]
2022-08-16 22:17:37 +03:00
[profile.release]
debug = 1