Skip to content

Commit 0a8ed05

Browse files
committed
chore: use hyphen as package name instead of underscore
1 parent da25a6e commit 0a8ed05

File tree

9 files changed

+41
-34
lines changed

9 files changed

+41
-34
lines changed

Cargo.lock

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

crates/synd_api/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ license.workspace = true
77
repository.workspace = true
88

99
description = "syndicationd backend api"
10-
name = "synd_api"
10+
name = "synd-api"
1111
readme = "README.md"
1212
version = "0.1.0"
1313

1414
[dependencies]
15-
synd_feed = { path = "../synd_feed", version = "0.1.0" }
16-
synd_o11y = { path = "../synd_o11y", version = "0.1.0" }
15+
synd-feed = { path = "../synd_feed", version = "0.1.0" }
16+
synd-o11y = { path = "../synd_o11y", version = "0.1.0" }
1717

1818
anyhow = { workspace = true }
1919
async-graphql = { version = "7.0", features = ["tracing"] }

crates/synd_authn/CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,19 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## [0.1.1]
5+
## [unreleased]
66

77
### Features
88

99
- Add palette flag by @ymgyt ([04dc486d](04dc486d0ab3043e021e164e70f5fe081e3c464d))
1010
- Use cow by @ymgyt ([ab6ae298](ab6ae298abeda1d7d3c67939bc70f0d2269e8654))
1111

12+
### Miscellaneous Tasks
13+
14+
- Update changelog by @ymgyt ([55ee02cc](55ee02cc2d1e6c31bada610ea0b6e00a7b035753))
15+
- Release by @ymgyt ([da25a6e1](da25a6e1f8e15a34e94e8cc88d5eec68262b76b0))
16+
- Use hyphen as package name instead of underscore by @ymgyt ([7da73d16](7da73d16f68b10e42b238fab75517e486c39181c))
17+
1218
### Refactor
1319

1420
- Create synd_authn crate by @ymgyt ([682bcc6f](682bcc6ff3c035be566dea99d2487e0173537c8d))

crates/synd_authn/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ readme.workspace = true
88
repository.workspace = true
99

1010
description = "syndicationd authentication lib"
11-
name = "synd_authn"
12-
version = "0.1.1"
11+
name = "synd-authn"
12+
version = "0.1.0"
1313

1414
[dependencies]
1515
anyhow = { workspace = true }

crates/synd_feed/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license.workspace = true
77
repository.workspace = true
88

99
description = "Library to handle syndication spec"
10-
name = "synd_feed"
10+
name = "synd-feed"
1111
readme = "README.md"
1212
version = "0.1.0"
1313

crates/synd_o11y/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license.workspace = true
77
repository.workspace = true
88

99
description = "syndicationd lib for tracing and opentelemetry ecosystem"
10-
name = "synd_o11y"
10+
name = "synd-o11y"
1111
readme = "README.md"
1212
version = "0.1.0"
1313

crates/synd_term/Cargo.toml

+7-6
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ license.workspace = true
88
readme.workspace = true
99
repository.workspace = true
1010

11-
name = "synd_term"
11+
name = "synd-term"
1212
version = "0.1.0"
1313

1414
[[bin]]
1515
name = "synd"
1616
path = "src/main.rs"
1717

1818
[dependencies]
19-
synd_authn = { path = "../synd_authn", version = "0.1.1" }
20-
synd_feed = { path = "../synd_feed", version = "0.1.0" }
21-
synd_o11y = { path = "../synd_o11y", version = "0.1.0" }
19+
synd-authn = { path = "../synd_authn", version = "0.1.0" }
20+
synd-feed = { path = "../synd_feed", version = "0.1.0" }
21+
synd-o11y = { path = "../synd_o11y", version = "0.1.0" }
2222

2323
anyhow = { workspace = true }
2424
chrono = { workspace = true }
@@ -49,8 +49,9 @@ url = { workspace = true }
4949
integration = []
5050

5151
[dev-dependencies]
52-
synd_api = { path = "../synd_api" }
53-
synd_test = { path = "../synd_test" }
52+
synd-api = { path = "../synd_api" }
53+
54+
synd-test = { path = "../synd_test" }
5455

5556
axum-server = { workspace = true }
5657
kvsd = { workspace = true }

crates/synd_test/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ license.workspace = true
77
readme.workspace = true
88
repository.workspace = true
99

10-
name = "synd_test"
10+
name = "synd-test"
1111
publish = false
1212
version = "0.1.0"
1313

1414
[dependencies]
15-
synd_authn = { path = "../synd_authn" }
15+
synd-authn = { path = "../synd_authn" }
1616

1717
anyhow = { workspace = true }
1818
axum = { workspace = true }

justfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ test:
3636

3737
# Run integration test
3838
integration-test:
39-
RUST_LOG="synd,integration,kvsd=info,info" cargo nextest run --package synd_term --features integration --test integration --no-capture
39+
RUST_LOG="synd,integration,kvsd=info,info" cargo nextest run --package synd-term --features integration --test integration --no-capture
4040

4141
# Update synd_api graphql schema
4242
update-gql-schema:
@@ -110,9 +110,9 @@ changelog-authn:
110110

111111
# Release synd_authn
112112
release-authn *flags:
113-
cargo release --package synd_authn {{flags}}
113+
cargo release --package synd-authn {{flags}}
114114

115115
# Release synd_term
116116
release-term *flags:
117-
cargo release --package synd_term {{flags}}
117+
cargo release --package synd-term {{flags}}
118118

0 commit comments

Comments
 (0)