-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (32 loc) · 932 Bytes
/
Cargo.toml
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
[package]
name = "tibrs"
version = "0.1.2"
edition = "2021"
license = "MIT"
description = "Provides functionality to compile and decompile tibasic source for TI graphing calculators"
homepage = "https://github.com/erwijet/tibrs"
repository = "https://github.com/erwijet/tibrs"
readme = "README.md"
keywords = ["tibasic", "ti83", "ti84"]
categories = ["compilers", "parsing"]
[lib]
name = "tibrs"
path = "src/lib.rs"
[[bin]]
name = "tibc"
path = "src/bin.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.79"
clap = { version = "4.4.13", features = ["derive"] }
hex = "0.4.3"
itertools = "0.12.0"
pest = "2.7.6"
pest_derive = "2.7.6"
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
toml = "0.8.8"
[build-dependencies]
itertools = "0.12.0"
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"