···11# This file contains settings for `cargo hakari`.
22# See https://docs.rs/cargo-hakari/latest/cargo_hakari/config for a full list of options.
3344-hakari-package = "my-workspace-hack"
44+hakari-package = "atpblog-workspace-hack"
5566# Format version for hakari's output. Version 4 requires cargo-hakari 0.9.22 or above.
77dep-format-version = "4"
···11+// Folder-specific settings
22+//
33+// For a full list of overridable settings, and general information on folder-specific settings,
44+// see the documentation: https://zed.dev/docs/configuring-zed#settings-files
55+{}
···2121}
22222323async fn ping(Query(params): Query<HashMap<String, String>>) -> Html<String> {
2424- let (tx, mut rx, fut) = my_common::echo_task(10, "ping".into());
2424+ let (tx, mut rx, fut) = atpblog_common::echo_task(10, "ping".into());
2525 tokio::spawn(fut);
2626 tokio::spawn(async move {
2727 for (k, v) in params {
+1
crates/atpblog-workspace-hack/Cargo.toml
···66name = "atpblog-workspace-hack"
77version = "0.1.0"
88description = "workspace-hack package, managed by hakari"
99+license.workspace = true
910# You can choose to publish this crate: see https://docs.rs/cargo-hakari/latest/cargo_hakari/publishing.
1011publish = false
1112