Skip to content

Commit ace94aa

Browse files
committed
build: add version for fkl cli
1 parent 333f150 commit ace94aa

1 file changed

Lines changed: 21 additions & 5 deletions

File tree

crates/fkl_cli/Cargo.toml

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,25 @@
11
[package]
22
name = "fkl_cli"
3-
version = "0.1.0"
3+
version = "0.2.0"
4+
authors = ["Phodal Huang <h@phodal.com>"]
5+
description = "Feakin is a architecture design and visual collaboration tool. This is the parser for Feakin."
6+
repository = "https://github.com/feakin/feakin/"
7+
categories = ["command-line-interface", "parsing"]
8+
keywords = [
9+
"architecture",
10+
"parser"
11+
]
12+
license = "MPL-2.0"
413
edition = "2021"
5-
6-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
14+
include = [
15+
"build.rs",
16+
"src/**/*",
17+
"Cargo.toml",
18+
"LICENSE*",
19+
"README.md",
20+
"benches/**/*",
21+
"examples/**/*"
22+
]
723

824
[dependencies]
925
clap = { version = "4.0.0-rc.3", features = ["derive", "cargo"] }
@@ -14,8 +30,8 @@ syntect = "5.0"
1430
serde = { version = "1", features = ["derive"] }
1531
serde_json = "1.0"
1632

17-
fkl-parser = { path = "../fkl_parser" }
18-
fkl_codegen_java = { path = "../fkl_codegen_java" }
33+
fkl-parser = { path = "../fkl_parser", version = "0.2.0" }
34+
fkl_codegen_java = { path = "../fkl_codegen_java", version = "0.2.0" }
1935

2036
[[bin]]
2137
name = "fkl"

0 commit comments

Comments
 (0)