Skip to content

Commit 6799921

Browse files
committed
Remove non-Rust stuff and update project name
1 parent 7a746cf commit 6799921

16 files changed

+6
-5604
lines changed

.clang-format

-34
This file was deleted.

.github/workflows/cpp.yml

-25
This file was deleted.

.github/workflows/python.yml

-25
This file was deleted.

.mypy.ini

-11
This file was deleted.

CMakeLists.txt

-18
This file was deleted.

Cargo.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
version = 3
44

55
[[package]]
6-
name = "new_project_name"
6+
name = "kittest"
77
version = "0.1.0"

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ authors = ["rerun.io <[email protected]>"]
33
categories = [] # TODO: fill in if you plan on publishing the crate
44
description = "" # TODO: fill in if you plan on publishing the crate
55
edition = "2021"
6-
homepage = "https://github.com/rerun-io/new_repo_name"
6+
homepage = "https://github.com/rerun-io/kittest"
77
include = ["LICENSE-APACHE", "LICENSE-MIT", "**/*.rs", "Cargo.toml"]
88
keywords = [] # TODO: fill in if you plan on publishing the crate
99
license = "MIT OR Apache-2.0"
10-
name = "new_project_name"
10+
name = "kittest"
1111
publish = false # TODO: set to `true` if you plan on publishing the crate
1212
readme = "README.md"
13-
repository = "https://github.com/rerun-io/new_repo_name"
13+
repository = "https://github.com/rerun-io/kittest"
1414
rust-version = "1.76"
1515
version = "0.1.0"
1616

README.md

+1-40
Original file line numberDiff line numberDiff line change
@@ -1,40 +1 @@
1-
# Rerun template repository
2-
Template for our private and public repos, containing CI, CoC, etc
3-
4-
When creating a new Rerun repository, use this as a template, then modify it as it makes sense.
5-
6-
This template should be the default for any repository of any kind, including:
7-
* Rust projects
8-
* C++ projects
9-
* Python projects
10-
* Other stuff
11-
12-
This template includes
13-
* License files
14-
* Code of Conduct
15-
* Helpers for checking and linting Rust code
16-
- `cargo-clippy`
17-
- `cargo-deny`
18-
- `rust-toolchain`
19-
-
20-
* CI for:
21-
- Spell checking
22-
- Link checking
23-
- C++ checks
24-
- Python checks
25-
- Rust checks
26-
27-
28-
## How to use
29-
Start by clicking "Use this template" at https://github.com/rerun-io/rerun_template/ or follow [these instructions](https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/creating-a-repository-from-a-template).
30-
31-
Then follow these steps:
32-
* Run `scripts/template_update.py init --languages cpp,rust,python` to delete files you don't need (give the languages you need support for)
33-
* Search and replace all instances of `new_repo_name` with the name of the repository.
34-
* Search and replace all instances of `new_project_name` with the name of the project (crate/binary name).
35-
* Search for `TODO` and fill in all those places
36-
* Replace this `README.md` with something better
37-
* Commit!
38-
39-
In the future you can always update this repository with the latest changes from the template by running:
40-
* `scripts/template_update.py update --languages cpp,rust,python`
1+
# Work-in-progress

lychee.toml

-3
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,4 @@ exclude = [
7676
'https://crates.io/crates/.*', # Avoid crates.io rate-limiting
7777
'https://github.com/rerun-io/rerun/commit/\.*', # Ignore links to our own commits (typically in changelog).
7878
'https://github.com/rerun-io/rerun/pull/\.*', # Ignore links to our own pull requests (typically in changelog).
79-
80-
# Used in rerun_template repo until the user search-replaces `new_repo_name`
81-
'https://github.com/rerun-io/new_repo_name',
8279
]

main.py

-11
This file was deleted.

0 commit comments

Comments
 (0)