-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
58 lines (48 loc) · 1.38 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "tr-lang"
version = "0.4.1"
edition = "2018"
authors = ["Kerem Göksu <[email protected]>"]
license = "MIT"
description = "A programming language made to bring syntax closer to Turkish"
homepage = "https://github.com/kaiserthe13th/tr-lang"
documentation = "https://tr-lang-docs.netlify.app/english/"
readme = "README.md"
repository = "https://github.com/kaiserthe13th/tr-lang"
keywords = ["programming-language", "lexer", "parser", "bytecode"]
categories = ["compilers", "parser-implementations"]
exclude = [
"tests/",
"target/",
"highlight/",
"turlu/"
]
[lib]
name = "tr_lang"
path = "src/lib.rs"
crate-type = ["lib"]
[[bin]]
name = "tr-lang"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", features = ["derive"] }
bincode = "1.3.3"
locale_config = "0.3"
rustyline = { version = "9.1.2", optional = true }
regex = { version = "1.5", optional = true }
lazy_static = { version = "1.4.0", optional = true }
dlopen = "0.1"
dyn-clonable = "0.9"
[features]
interactive = ["rustyline", "regex", "lazy_static"]
fmt = []
default = ["interactive", "fmt"]
[build-dependencies]
chrono = "0.4"
[package.metadata.rpm]
package = "tr-lang"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[package.metadata.rpm.targets]
tr-lang = { path = "/usr/bin/tr-lang" }