Rename the package (and application) to Rocket Pinboard

This commit is contained in:
Paul van Tilburg 2018-03-09 22:37:47 +01:00
parent 76c0b2f26e
commit 900ace01d3
4 changed files with 26 additions and 25 deletions

32
Cargo.lock generated
View File

@ -436,22 +436,6 @@ dependencies = [
"syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)",
] ]
[[package]]
name = "pinboard"
version = "1.0.1"
dependencies = [
"Inflector 0.11.2 (registry+https://github.com/rust-lang/crates.io-index)",
"comrak 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
"glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
"rocket 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
"rocket_codegen 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
"rocket_contrib 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_derive 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)",
"toml 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]] [[package]]
name = "proc-macro2" name = "proc-macro2"
version = "0.2.3" version = "0.2.3"
@ -572,6 +556,22 @@ dependencies = [
"yansi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "yansi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
] ]
[[package]]
name = "rocket-pinboard"
version = "1.0.1"
dependencies = [
"Inflector 0.11.2 (registry+https://github.com/rust-lang/crates.io-index)",
"comrak 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
"glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
"rocket 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
"rocket_codegen 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
"rocket_contrib 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_derive 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)",
"toml 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]] [[package]]
name = "rocket_codegen" name = "rocket_codegen"
version = "0.3.6" version = "0.3.6"

View File

@ -1,10 +1,10 @@
[package] [package]
name = "pinboard" name = "rocket-pinboard"
version = "1.0.1" version = "1.0.1"
authors = ["Paul van Tilburg <paul@luon.net>"] authors = ["Paul van Tilburg <paul@luon.net>"]
description = """ description = """
A web application for maintaining a pinboard of notes for a family or group A web application (based on Rocket) for maintaining a pinboard of notes for
of friends. a family or group of friends.
""" """
readme = "README.md" readme = "README.md"
license = "MIT" license = "MIT"

View File

@ -1,4 +1,4 @@
# Pinboard # Rocket Pinboard
A [Rocket](https://rocket.rs) based web application written in Rust for A [Rocket](https://rocket.rs) based web application written in Rust for
maintaining a pinboard of notes for a family or group of friends. maintaining a pinboard of notes for a family or group of friends.
@ -7,11 +7,12 @@ physical notes would also allow.
## Building ## Building
Because Rocket still requires a nightly version of Rust, Pinboard also Because Rocket still requires a nightly version of Rust, Rocket Pinboard
requires it. The application has been tested with `nightly-2017-12-21`. also requires it. The application has been tested with
`nightly-2018-01-13`.
Pinboard uses a customized Bootstrap-style, to compile this, the Rocket Pinboard uses a customized Bootstrap-style, to compile this, use the
Ruby implementation of Sass Ruby implementation of Sass:
``` ```
$ gem install sass $ gem install sass

View File

@ -106,7 +106,7 @@ Horizontale lijn<pre>"></textarea>
{% block footer %} {% block footer %}
<footer class="footer bg-dark text-light"> <footer class="footer bg-dark text-light">
<div class="container text-center"> <div class="container text-center">
<small>Pinboard v{{app_version}} — &copy; 2018 Paul van Tilburg</small> <small>Rocket Pinboard v{{app_version}} — &copy; 2018 Paul van Tilburg</small>
</div> </div>
</footer> </footer>
{% endblock footer %} {% endblock footer %}