Skip to content

Commit

Permalink
Second attempt at a rewrite using updated libraries, data structures,…
Browse files Browse the repository at this point in the history
… and a web UI
  • Loading branch information
petschekr committed Feb 23, 2020
1 parent 712202c commit 6391577
Show file tree
Hide file tree
Showing 11 changed files with 1,852 additions and 2,913 deletions.
2,163 changes: 1,377 additions & 786 deletions Cargo.lock

Large diffs are not rendered by default.

18 changes: 13 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,17 @@ authors = ["Ryan Petschek <[email protected]>"]
edition = "2018"

[dependencies]
brother-ql-rs = "0.1.1"
hackgt-nfc = "0.3.3"
libusb = "0.3.0"
brother-ql-rs = "0.2.1"
hackgt-nfc = "0.3.6"
rocket = "0.4"
serde = "1.0.104"
rusb = "0.5.5"

[patch.crates-io]
brother-ql-rs = { path = "../brother-ql-rs" }
[dependencies.rocket_contrib]
version = "0.4"
default-features = false
features = ["json", "serve", "handlebars_templates"]

# [patch.crates-io]
# brother-ql-rs = { path = "../brother-ql-rs" }
# hackgt-nfc = { path = "../hackgt-nfc" }
10 changes: 10 additions & 0 deletions Rocket.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[global]
template_dir = "src/ui"

[development]
address = "localhost"
port = 3000

[production]
address = "0.0.0.0"
port = 3000
Loading

0 comments on commit 6391577

Please sign in to comment.