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" checksum = "7345c971d1ef21ffdbd103a75990a15eb03604fc8b8852ca8cb418ee1a099028"
[[package]] [[package]]
name = "stoptime_server" name = "stoptime-server"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"chrono", "chrono",
@ -1352,7 +1352,7 @@ dependencies = [
] ]
[[package]] [[package]]
name = "stoptime_ui" name = "stoptime-ui"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"sass-rs", "sass-rs",

View File

@ -1,12 +1,14 @@
[package] [package]
name = "stoptime_server" name = "stoptime-server"
version = "0.1.0" version = "0.1.0"
authors = ["Paul van Tilburg <paul@luon.net>"] authors = ["Paul van Tilburg <paul@luon.net>"]
categories = ["web-programming"]
description = """ description = """
The web server for task/project time registration and invoicing. The web server for task/project time registration and invoicing.
""" """
repository = "https://git.luon.net/mozcode/stoptime-rs" repository = "https://git.luon.net/mozcode/stoptime-rs"
license = "MIT" license = "MIT"
readme = "../README.md"
edition = "2018" edition = "2018"
[dependencies] [dependencies]

View File

@ -1,16 +1,18 @@
[package] [package]
name = "stoptime_ui" name = "stoptime-ui"
version = "0.1.0" version = "0.1.0"
authors = ["Paul van Tilburg <paul@luon.net>"] authors = ["Paul van Tilburg <paul@luon.net>"]
categories = ["web-programming"]
description = """ description = """
The web UI for task/project time registration and invoicing. The web UI for task/project time registration and invoicing.
""" """
repository = "https://git.luon.net/mozcode/stoptime-rs" repository = "https://git.luon.net/mozcode/stoptime-rs"
license = "MIT" license = "MIT"
readme = "../README.md"
edition = "2018" edition = "2018"
[lib] [lib]
crate-type = ["cdylib"] crate-type = ["cdylib", "rlib"]
[dependencies] [dependencies]
wasm-bindgen = "0.2.64" wasm-bindgen = "0.2.64"