-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from sebastienrousseau/feat/libmake
Feat/libmake
- Loading branch information
Showing
30 changed files
with
1,705 additions
and
728 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,5 @@ version = 1 | |
name = "rust" | ||
enabled = true | ||
|
||
[analyzers.meta] | ||
msrv = "stable" | ||
[analyzers.meta] | ||
msrv = "stable" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Copyright © 2023 LibMake. All rights reserved. | ||
# SPDX-License-Identifier: Apache-2.0 OR MIT | ||
|
||
# EditorConfig helps developers define and maintain consistent | ||
# coding styles between different editors and IDEs | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
[*.rs] | ||
max_line_length = 80 | ||
|
||
[*.md] | ||
# double whitespace at end of line | ||
# denotes a line break in Markdown | ||
trim_trailing_whitespace = false | ||
|
||
[*.yml] | ||
indent_size = 2 | ||
|
||
[Makefile] | ||
indent_style = tab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[package] | ||
authors = ["Sebastien Rousseau <[email protected]>}"] | ||
authors = ["Sebastien Rousseau <[email protected]>"] | ||
categories = ['development-tools', 'command-line-utilities', 'template-engine'] | ||
description = "A code generator to reduce repetitive tasks and build high-quality Rust libraries." | ||
edition = "2021" | ||
|
@@ -13,8 +13,8 @@ keywords = [ | |
license = "MIT OR Apache-2.0" | ||
name = "libmake" | ||
repository = "https://github.com/sebastienrousseau/libmake.git" | ||
rust-version = "1.69.0" | ||
version = "0.1.9" | ||
rust-version = "1.71.1" | ||
version = "0.2.0" | ||
include = [ | ||
"/CONTRIBUTING.md", | ||
"/LICENSE-APACHE", | ||
|
@@ -41,16 +41,19 @@ path = "benches/criterion.rs" | |
debug = true | ||
|
||
[dependencies] | ||
anyhow = "1.0.75" | ||
assert_cmd = "2.0.12" | ||
clap = "4.4.6" | ||
clap = "4.4.7" | ||
csv = "1.3.0" | ||
dtt = "0.0.4" | ||
figlet-rs = "0.1.5" | ||
openssl = { version = "0.10.57", features = ["vendored"] } | ||
# openssl = { version = "0.10.59", features = ["vendored"] } | ||
reqwest = { version = "0.11.22", features = ["blocking"] } | ||
serde = { version = "1.0.188", features = ["derive"] } | ||
serde_json = "1.0.107" | ||
serde_yaml = "0.9.25" | ||
toml = "0.8.2" | ||
serde = { version = "1.0.192", features = ["derive"] } | ||
serde_json = "1.0.108" | ||
serde_yaml = "0.9.27" | ||
toml = "0.8.8" | ||
vrd = "0.0.4" | ||
|
||
[dev-dependencies] | ||
criterion = "0.5.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.