Skip to content

Commit

Permalink
adding a stub for m-bus-parser-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
maebli committed Mar 29, 2024
1 parent b95592a commit e4ae316
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Cargo.toml
Expand Up @@ -33,3 +33,6 @@ codegen-units = 1 # Reduce codegen units to improve optimizations
[dependencies]
bitflags = "2.4.2"
arrayvec = "0.7.4"

[workspace]
members = [".", "cli"]
24 changes: 24 additions & 0 deletions cli/Cargo.toml
@@ -0,0 +1,24 @@
[package]
name = "m-bus-parser-cli"
version = "0.0.0"
edition = "2021"
description = "A cli to use the library for parsing M-Bus frames"
license = "MIT"
homepage = "https://maebli.github.io/"
repository = "https://github.com/maebli/m-bus-parser"
readme = "README.md"
author = "Michael Aebli"
keywords = ["m-bus", "parser", "parse", "cli"]

[dev-dependencies]

[build-dependencies]

[features]

[profile.release]
opt-level = 'z' # Optimize for size
lto = true # Enable Link Time Optimization
codegen-units = 1 # Reduce codegen units to improve optimizations

[dependencies]

0 comments on commit e4ae316

Please sign in to comment.