Skip to content

Commit b9ae08c

Browse files
committed
chore: add Cargo package fields
1 parent d1e43e9 commit b9ae08c

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

Cargo.toml

+5
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,14 @@ resolver = "2"
33
members = ["synd", "syndapi", "syndterm"]
44

55
[workspace.package]
6+
description = "terminal feed viewer"
7+
version = "0.1.0"
68
edition = "2021"
79
authors = ["ymgyt"]
10+
categories = ["command-line-utilities"]
811
license = "MIT OR Apache-2.0"
12+
repository = "https://github.com/ymgyt/syndicationd"
13+
readme = "README"
914

1015
[workspace.dependencies]
1116
async-trait = { version = "0.1.77" }

synd/Cargo.toml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
[package]
22
name = "synd"
3-
version = "0.1.0"
3+
description = "Library to handle syndication spec"
4+
version.workspace = true
45
authors.workspace = true
56
edition.workspace = true
67
license.workspace = true
7-
8-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8+
categories.workspace = true
9+
repository.workspace = true
910

1011
[dependencies]
1112
anyhow = { workspace = true }

syndapi/Cargo.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
[package]
22
name = "syndapi"
3-
version = "0.1.0"
3+
description = "syndicationd backend api"
4+
version.workspace = true
45
authors.workspace = true
56
edition.workspace = true
67
license.workspace = true
8+
categories.workspace = true
9+
repository.workspace = true
710

811
[dependencies]
912
anyhow = { workspace = true }

syndterm/Cargo.toml

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
[package]
22
name = "syndterm"
3-
version = "0.1.0"
3+
version.workspace = true
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true
7+
categories.workspace = true
8+
repository.workspace = true
79

810
[dependencies]
911
anyhow = { workspace = true }
@@ -14,7 +16,8 @@ directories = "5.0.1"
1416
edit = "0.1.5"
1517
futures-util = "0.3.30"
1618
graphql_client = { workspace = true }
17-
http = "0.2" # reqwest use 0.2
19+
# reqwest use 0.2
20+
http = "0.2"
1821
http-serde-ext = "0.1"
1922
html2text = { version = "0.12" }
2023
open = "5.0.1"

0 commit comments

Comments
 (0)