Skip to content

Commit

Permalink
adding flagfile-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
dzhibas committed Mar 20, 2024
1 parent 3091390 commit 617eb9b
Show file tree
Hide file tree
Showing 4 changed files with 147 additions and 0 deletions.
128 changes: 128 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ version = "0.3.8"
edition = "2021"
authors = ["Nikolajus Krauklis <[email protected]>"]

[workspace]
resolver = "2"

members = [
"flagfile-cli",
"."
]

[lints.rust]
unsafe_code = "forbid"

Expand Down
8 changes: 8 additions & 0 deletions flagfile-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[package]
name = "flagfile-cli"
version = "0.1.0"
edition = "2021"
authors = ["Nikolajus Krauklis <[email protected]>"]

[dependencies]
clap = { version = "4.5.0", features = ["derive", "env"] }
3 changes: 3 additions & 0 deletions flagfile-cli/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world from Flagfile cli");
}

0 comments on commit 617eb9b

Please sign in to comment.