27 lines
523 B
TOML
27 lines
523 B
TOML
[package]
|
|
name = "ic10emu"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
crate-type = ["lib"]
|
|
|
|
|
|
[dependencies]
|
|
const-crc32 = "1.3.0"
|
|
phf = "0.11.2"
|
|
regex = "1.10.3"
|
|
# rust-sitter = "0.4.1"
|
|
|
|
rust-sitter = { path = "E:\\Projects\\rust-sitter\\runtime"}
|
|
|
|
[build-dependencies]
|
|
convert_case = "0.6.0"
|
|
phf_codegen = "0.11.2"
|
|
regex = "1.10.3"
|
|
# rust-sitter-tool = "0.4.1"
|
|
rust-sitter-tool = { path = "E:\\Projects\\rust-sitter\\tool"}
|
|
|