diff --git a/Cargo.lock b/Cargo.lock index 4753283..f0d57e0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1338,7 +1338,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7345c971d1ef21ffdbd103a75990a15eb03604fc8b8852ca8cb418ee1a099028" [[package]] -name = "stoptime_server" +name = "stoptime-server" version = "0.1.0" dependencies = [ "chrono", @@ -1352,7 +1352,7 @@ dependencies = [ ] [[package]] -name = "stoptime_ui" +name = "stoptime-ui" version = "0.1.0" dependencies = [ "sass-rs", diff --git a/server/Cargo.toml b/server/Cargo.toml index efcf627..70ce9ee 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,12 +1,14 @@ [package] -name = "stoptime_server" +name = "stoptime-server" version = "0.1.0" authors = ["Paul van Tilburg "] +categories = ["web-programming"] description = """ The web server for task/project time registration and invoicing. """ repository = "https://git.luon.net/mozcode/stoptime-rs" license = "MIT" +readme = "../README.md" edition = "2018" [dependencies] diff --git a/ui/Cargo.toml b/ui/Cargo.toml index 647d320..e8c3723 100644 --- a/ui/Cargo.toml +++ b/ui/Cargo.toml @@ -1,16 +1,18 @@ [package] -name = "stoptime_ui" +name = "stoptime-ui" version = "0.1.0" authors = ["Paul van Tilburg "] +categories = ["web-programming"] description = """ The web UI for task/project time registration and invoicing. """ repository = "https://git.luon.net/mozcode/stoptime-rs" license = "MIT" +readme = "../README.md" edition = "2018" [lib] -crate-type = ["cdylib"] +crate-type = ["cdylib", "rlib"] [dependencies] wasm-bindgen = "0.2.64"