More Cargo.toml tweaks

This commit is contained in:
Paul van Tilburg 2020-07-16 15:52:45 +02:00
parent 701698e990
commit d34861ed93
Signed by: paul
GPG Key ID: C6DE073EDA9EEC4D
3 changed files with 9 additions and 5 deletions

4
Cargo.lock generated
View File

@ -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",

View File

@ -1,12 +1,14 @@
[package]
name = "stoptime_server"
name = "stoptime-server"
version = "0.1.0"
authors = ["Paul van Tilburg <paul@luon.net>"]
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]

View File

@ -1,16 +1,18 @@
[package]
name = "stoptime_ui"
name = "stoptime-ui"
version = "0.1.0"
authors = ["Paul van Tilburg <paul@luon.net>"]
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"