Skip to content

Commit b090188

Browse files
committed
chore: update app metadata
1 parent 17bd4e2 commit b090188

File tree

5 files changed

+28
-32
lines changed

5 files changed

+28
-32
lines changed

backend/Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

backend/Cargo.toml

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
[package]
2-
name = "text_ops"
3-
version = "0.1.0"
2+
name = "text_ops_lib"
3+
version = "1.0.0"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
99
clap = { version = "3.2.16", features = ["derive"] }
10-
owoify_rs = "1.0.0"
11-
12-
[lib]
13-
name = "text_ops_lib"
14-
path = "src/lib.rs"
10+
owoify_rs = "1.0.0"

src-tauri/Cargo.lock

+13-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
2-
name = "app"
3-
version = "0.1.0"
4-
description = "A Tauri App"
5-
authors = ["you"]
6-
license = ""
7-
repository = ""
8-
default-run = "app"
2+
name = "text_ops"
3+
version = "1.0.0"
4+
description = "Perform various operations on text"
5+
authors = ["Poly-Pixel"]
6+
license = "GPL-v3"
7+
repository = "https://github.com/Poly-Pixel/text_ops"
8+
default-run = "text_ops"
99
edition = "2021"
1010
rust-version = "1.57"
1111

@@ -18,7 +18,7 @@ tauri-build = { version = "1.0.4", features = [] }
1818
serde_json = "1.0"
1919
serde = { version = "1.0", features = ["derive"] }
2020
tauri = { version = "1.0.5", features = ["api-all", "cli"] }
21-
text_ops = { path = "../backend" }
21+
text_ops_lib = { path = "../backend" }
2222
clap = "3.2.17"
2323

2424
[features]

src-tauri/tauri.conf.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
},
99
"package": {
1010
"productName": "text_ops",
11-
"version": "0.1.0"
11+
"version": "1.0.0"
1212
},
1313
"tauri": {
1414
"allowlist": {
1515
"all": true
1616
},
1717
"bundle": {
1818
"active": true,
19-
"category": "DeveloperTool",
19+
"category": "Utility",
2020
"copyright": "",
2121
"deb": {
2222
"depends": []

0 commit comments

Comments
 (0)