Skip to content

Commit c7236b6

Browse files
committed
Add 'ct_worker_' prefix to ct_worker config crate
All crate names in the workspace must be unique, so make it clear that the config crate is specific to the 'ct_worker' application.
1 parent 8c8f9f9 commit c7236b6

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/ct_worker/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ serde.workspace = true
3131
serde_json.workspace = true
3232
jsonschema = "0.26.2"
3333
static_ct_api = "0.2.0"
34-
config = { path = "./config" }
34+
config = { path = "./config", package = "ct_worker_config" }
3535
chrono.workspace = true
3636
url = "2.5.4"
3737

@@ -45,7 +45,7 @@ futures-executor = "0.3.31"
4545
anyhow.workspace = true
4646
base64.workspace = true
4747
byteorder = "1.4"
48-
config = { path = "./config" }
48+
config = { path = "./config", package = "ct_worker_config" }
4949
console_error_panic_hook = "0.1.1"
5050
console_log = { version = "1.0" }
5151
ed25519-dalek = { workspace = true, features = ["pkcs8"] }

crates/ct_worker/config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "config"
2+
name = "ct_worker_config"
33
publish = false
44
version.workspace = true
55
authors.workspace = true

0 commit comments

Comments
 (0)