Skip to content

Commit

Permalink
Update badges and bump versions (#357)
Browse files Browse the repository at this point in the history
Signed-off-by: Sascha Grunert <[email protected]>
  • Loading branch information
saschagrunert authored Jul 5, 2019
1 parent 01242c6 commit aa9276f
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 21 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ categories = ["web-programming"]
description = "A web application completely written in Rust"
documentation = "https://docs.rs/webapp"
homepage = "https://github.com/saschagrunert/webapp.rs"
keywords = ["web", "app", "website", "webapp", "wasm", "webassembly"]
keywords = ["web", "app", "webapp", "wasm", "webassembly"]
license = "MIT"
name = "webapp"
readme = "README.md"
repository = "https://github.com/saschagrunert/webapp.rs"
version = "0.3.0"
version = "1.0.0"
edition = "2018"

[badges]
Expand All @@ -20,7 +20,7 @@ maintenance = { status = "actively-developed" }
[dependencies]
diesel = { version = "1.4.2", optional = true }
failure = "0.1.5"
serde = { version = "1.0.94", features = [ "derive" ]}
serde = { version = "1.0.94", features = ["derive"]}
toml = "0.5.1"

[features]
Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,15 @@

[![CircleCI](https://circleci.com/gh/saschagrunert/webapp.rs.svg?style=shield)](https://circleci.com/gh/saschagrunert/webapp.rs)
[![Coverage](https://codecov.io/gh/saschagrunert/webapp.rs/branch/master/graph/badge.svg)](https://codecov.io/gh/saschagrunert/webapp.rs)
[![dependency status](https://deps.rs/repo/github/saschagrunert/webapp.rs/status.svg)](https://deps.rs/repo/github/saschagrunert/webapp.rs)
[![Doc](https://img.shields.io/badge/doc-webapp-orange.svg)](https://saschagrunert.github.io/webapp.rs/doc/webapp/index.html)
[![Deps](https://deps.rs/repo/github/saschagrunert/webapp.rs/status.svg)](https://deps.rs/repo/github/saschagrunert/webapp.rs)
[![Docs master](https://img.shields.io/badge/doc-master-orange.svg)](https://saschagrunert.github.io/webapp.rs/doc/webapp/index.html)
[![Docs release](https://docs.rs/webapp/badge.svg)](https://docs.rs/webapp)
[![Docs release backend](https://docs.rs/webapp-backend/badge.svg)](https://docs.rs/webapp-backend)
[![Docs release frontend](https://docs.rs/webapp-frontend/badge.svg)](https://docs.rs/webapp-frontend)
[![License MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/saschagrunert/webapp.rs/blob/master/LICENSE)
[![Crates.io](https://img.shields.io/crates/v/webapp.svg)](https://crates.io/crates/webapp)
[![Crates.io](https://img.shields.io/crates/v/webapp-backend.svg)](https://crates.io/crates/webapp-backend)
[![Crates.io](https://img.shields.io/crates/v/webapp-frontend.svg)](https://crates.io/crates/webapp-frontend)

## A web application completely written in Rust

Expand Down
9 changes: 4 additions & 5 deletions backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@ categories = ["web-programming"]
description = "A web application completely written in Rust"
documentation = "https://docs.rs/webapp"
homepage = "https://github.com/saschagrunert/webapp.rs"
keywords = ["web", "app", "website", "webapp", "wasm", "webassembly"]
keywords = ["web", "app", "webapp", "wasm", "webassembly"]
license = "MIT"
name = "webapp-backend"
readme = "README.md"
repository = "https://github.com/saschagrunert/webapp.rs"
version = "0.1.0"
version = "1.0.0"
edition = "2018"

[badges]
Expand Down Expand Up @@ -43,9 +42,9 @@ log = "0.4.6"
num_cpus = "1.10.1"
openssl = "0.10.23"
r2d2 = "0.8.5"
serde = { version = "1.0.94", features = [ "derive" ]}
serde = { version = "1.0.94", features = ["derive"]}
serde_cbor = "0.10.0"
time = "0.1.42"
url = "1.7.2"
uuid = { version = "0.7.4", features = ["v4"] }
webapp = { path = "..", features = ["backend"] }
webapp = { version = "1.0.0", path = "..", features = ["backend"] }
11 changes: 5 additions & 6 deletions frontend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@ categories = ["web-programming"]
description = "A web application completely written in Rust"
documentation = "https://docs.rs/webapp"
homepage = "https://github.com/saschagrunert/webapp.rs"
keywords = ["web", "app", "website", "webapp", "wasm", "webassembly"]
keywords = ["web", "app", "webapp", "wasm", "webassembly"]
license = "MIT"
name = "webapp-frontend"
readme = "README.md"
repository = "https://github.com/saschagrunert/webapp.rs"
version = "0.1.0"
version = "1.0.0"
edition = "2018"

[badges]
Expand All @@ -25,13 +24,13 @@ path = "src/main.rs"
failure = "0.1.5"
sass-rs = "0.2.2"
url = "1.7.2"
webapp = { path = ".." }
webapp = { version = "1.0.0", path = ".." }

[dependencies]
failure = "0.1.5"
log = "0.4.6"
serde = { version = "1.0.94", features = [ "derive" ]}
serde = { version = "1.0.94", features = ["derive"]}
stdweb = "0.4.17"
webapp = { path = ".." }
webapp = { version = "1.0.0", path = ".." }
yew = { version = "0.6.0", features = ["cbor"] }
yew-router = "0.2.0"

0 comments on commit aa9276f

Please sign in to comment.