Skip to content

Commit c2a1999

Browse files
committed
chore: add deps and rename from base template
1 parent 5c373d0 commit c2a1999

File tree

6 files changed

+31
-21
lines changed

6 files changed

+31
-21
lines changed

Cargo.toml

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,30 @@
11
[package]
2-
name = "base"
2+
default-run = "netpulse"
3+
name = "netpulse"
34
version = "0.1.0"
45
edition = "2021"
5-
publish = false
6+
publish = true
67
authors = ["Christoph J. Scherr <[email protected]>"]
7-
license = "GPL-3.0-or-later"
8-
description = "No description yet"
8+
license = "MIT"
9+
description = "Keep track of if your internet is still alive, collect stats against a crappy ISP"
910
readme = "README.md"
10-
homepage = "https://git.cscherr.de/PlexSheep/rs-base"
11-
repository = "https://git.cscherr.de/PlexSheep/rs-base"
12-
keywords = ["template"]
11+
homepage = "https://github.com/PlexSheep/kauma"
12+
repository = "https://github.com/PlexSheep/kauma"
1313

1414

1515
[dependencies]
16+
getopts = "0.2"
17+
serde = { version = "1.0", features = ["derive"] }
18+
serde_json = "1.0"
19+
daemonize = "0.5"
20+
rusqlite = "0.32.1"
21+
bincode = "1.3.3"
22+
flagset = { version = "0.4.6", features = ["serde"] }
23+
24+
[[bin]] # client
25+
name = "netpulse"
26+
path = "src/bins/netpulse.rs"
27+
28+
[[bin]] # daemon
29+
name = "netpulsed"
30+
path = "src/bins/netpulsed.rs"

README.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
# rs-base
1+
# Netpulse
22

3-
<!-- TODO: replace 'base' with crate name and remove comments -->
43
![Project badge](https://img.shields.io/badge/language-Rust-blue.svg)
5-
![Crates.io License](https://img.shields.io/crates/l/base)
6-
![GitHub Release](https://img.shields.io/github/v/release/PlexSheep/base)
7-
![GitHub language count](https://img.shields.io/github/languages/count/PlexSheep/base)
8-
[![Rust CI](https://github.com/PlexSheep/base/actions/workflows/cargo.yaml/badge.svg)](https://github.com/PlexSheep/hedu/actions/workflows/cargo.yaml)
4+
![Crates.io License](https://img.shields.io/crates/l/netpulse)
5+
![GitHub Release](https://img.shields.io/github/v/release/PlexSheep/netpulse)
6+
![GitHub language count](https://img.shields.io/github/languages/count/PlexSheep/netpulse)
7+
[![Rust CI](https://github.com/PlexSheep/netpulse/actions/workflows/cargo.yaml/badge.svg)](https://github.com/PlexSheep/hedu/actions/workflows/cargo.yaml)
98

9+
Keep track of your internet connection with a daemon
1010

11-
Base repository for rust projects
12-
13-
* [GitHub](https://github.com/PlexSheep/base)
14-
* [crates.io](https://crates.io/crates/base)
15-
* [docs.rs](https://docs.rs/crate/base/)
11+
* [GitHub](https://github.com/PlexSheep/netpulse)
12+
* [crates.io](https://crates.io/crates/netpulse)
13+
* [docs.rs](https://docs.rs/crate/netpulse/)

src/bins/netpulse.rs

Whitespace-only changes.

src/bins/netpulsed.rs

Whitespace-only changes.

src/lib.rs

Whitespace-only changes.

src/main.rs

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)