chore: init

This commit is contained in:
Compositr 2025-01-27 14:53:33 +11:00
parent 82fd582524
commit 792c5ad0e7
Signed by: compositr
GPG key ID: 91E3DE20129A0B4A
10 changed files with 44 additions and 0 deletions

View file

@ -7,3 +7,6 @@
# specified in the common-dictionary #
# file instead. #
# # # # # # # # # # # # # # # # # # # # #
shieldsrs
libshields

1
.gitignore vendored
View file

@ -0,0 +1 @@
target/

14
Cargo.lock generated Normal file
View file

@ -0,0 +1,14 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "libshields"
version = "0.1.0"
[[package]]
name = "shieldsrs"
version = "0.1.0"
dependencies = [
"libshields",
]

4
Cargo.toml Normal file
View file

@ -0,0 +1,4 @@
[workspace]
resolver = "2"
members = ["libshields", "shieldsrs"]

View file

@ -0,0 +1 @@
# shieldsrs

6
libshields/Cargo.toml Normal file
View file

@ -0,0 +1,6 @@
[package]
name = "libshields"
version = "0.1.0"
edition = "2021"
[dependencies]

3
libshields/src/lib.rs Normal file
View file

@ -0,0 +1,3 @@
//! # libshields
//!
//! A fast library for generating shields.io-like badges.

7
shieldsrs/Cargo.toml Normal file
View file

@ -0,0 +1,7 @@
[package]
name = "shieldsrs"
version = "0.1.0"
edition = "2021"
[dependencies]
libshields = { path = "../libshields" }

5
shieldsrs/src/main.rs Normal file
View file

@ -0,0 +1,5 @@
use libshields;
fn main() {
println!("Hello, world!");
}

View file