generated from KennethTrecy/feo_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (38 loc) · 1.35 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
[package]
name = "chearmyp_lexer"
version = "1.0.0"
authors = ["Kenneth Trecy Tobias <[email protected]>"]
edition = "2021"
license = "MIT"
[dependencies.abstract_chearmyp_boundary]
git = "https://github.com/KennethTrecy/abstract_chearmyp_boundary"
tag = "v1.0.0"
[dependencies.abstract_chearmyp_source]
git = "https://github.com/KennethTrecy/abstract_chearmyp_source"
tag = "v1.0.0"
[dependencies.abstract_chearmyp_token]
git = "https://github.com/KennethTrecy/abstract_chearmyp_token"
tag = "v1.0.0"
[dev-dependencies.abstract_chearmyp_boundary]
git = "https://github.com/KennethTrecy/abstract_chearmyp_boundary"
tag = "v1.0.0"
features = ["range_boundary", "vec_boundary_collection"]
[dev-dependencies.abstract_chearmyp_source]
git = "https://github.com/KennethTrecy/abstract_chearmyp_source"
tag = "v1.0.0"
features = ["slice_u8_source", "vec_source_collection", "slice_u8_comparable_to_str"]
[dev-dependencies.abstract_chearmyp_token]
git = "https://github.com/KennethTrecy/abstract_chearmyp_token"
tag = "v1.0.0"
features = ["assertable_token_kind", "vecdeque_token_queue"]
[dev-dependencies.chearmyp_token]
git = "https://github.com/KennethTrecy/chearmyp_token"
tag = "v1.0.0"
features = ["assertable_token"]
[features]
default = []
no_std = [
"abstract_chearmyp_source/no_std",
"abstract_chearmyp_boundary/no_std",
"abstract_chearmyp_token/no_std"
]