generated from Astrial.org/template
chore: init
This commit is contained in:
parent
82fd582524
commit
792c5ad0e7
10 changed files with 44 additions and 0 deletions
|
@ -7,3 +7,6 @@
|
||||||
# specified in the common-dictionary #
|
# specified in the common-dictionary #
|
||||||
# file instead. #
|
# file instead. #
|
||||||
# # # # # # # # # # # # # # # # # # # # #
|
# # # # # # # # # # # # # # # # # # # # #
|
||||||
|
|
||||||
|
shieldsrs
|
||||||
|
libshields
|
||||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -0,0 +1 @@
|
||||||
|
target/
|
14
Cargo.lock
generated
Normal file
14
Cargo.lock
generated
Normal 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
4
Cargo.toml
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
[workspace]
|
||||||
|
resolver = "2"
|
||||||
|
|
||||||
|
members = ["libshields", "shieldsrs"]
|
|
@ -0,0 +1 @@
|
||||||
|
# shieldsrs
|
6
libshields/Cargo.toml
Normal file
6
libshields/Cargo.toml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
[package]
|
||||||
|
name = "libshields"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
|
[dependencies]
|
3
libshields/src/lib.rs
Normal file
3
libshields/src/lib.rs
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
//! # libshields
|
||||||
|
//!
|
||||||
|
//! A fast library for generating shields.io-like badges.
|
7
shieldsrs/Cargo.toml
Normal file
7
shieldsrs/Cargo.toml
Normal 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
5
shieldsrs/src/main.rs
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
use libshields;
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
println!("Hello, world!");
|
||||||
|
}
|
Loading…
Reference in a new issue