index : license-api-rs.git

ascending towards madness

author holly sparkles <sparkles@holly.sh> 2023-09-30 14:42:00.0 +00:00:00
committer holly sparkles <sparkles@holly.sh> 2023-09-30 14:42:00.0 +00:00:00
commit
8b003b36d792460d2ceecee1316637661cee4082 [patch]
tree
c10fbc9cf75cf34ec60d4a35c5acdb0dace41104
parent
4b31f2671f6ebd878ff0f7cc96e70dc11bdc26e1
download
8b003b36d792460d2ceecee1316637661cee4082.tar.gz

chore: add 'hello world' cargo project



Diff

 Cargo.toml  | 8 ++++++++
 src/main.rs | 3 +++
 2 files changed, 11 insertions(+)

diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..36364f3
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,8 @@
[package]
name = "license-api-rs"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
diff --git a/src/main.rs b/src/main.rs
new file mode 100644
index 0000000..e7a11a9
--- /dev/null
+++ b/src/main.rs
@@ -0,0 +1,3 @@
fn main() {
    println!("Hello, world!");
}