feat: with rust build and test
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-08-12 19:50:30 +02:00
parent 5c53589c27
commit bae3a5050c
26 changed files with 855 additions and 2 deletions

View File

@@ -0,0 +1,3 @@
[workspace]
members = ["crates/*"]
resolver = "2"

View File

@@ -0,0 +1 @@
/target

View File

@@ -0,0 +1,8 @@
[package]
name = "example_bin"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

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