-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1e4264f
commit 78cce2c
Showing
9 changed files
with
49 additions
and
27 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ Application microframework with support for command-line option parsing, | |
configuration, error handling, logging, and terminal interactions. | ||
This crate contains a CLI utility for generating new applications. | ||
""" | ||
version = "0.7.0" | ||
version = "0.8.0" | ||
license = "Apache-2.0" | ||
authors = ["Tony Arcieri <[email protected]>"] | ||
homepage = "https://github.com/iqlusioninc/abscissa/" | ||
|
@@ -14,15 +14,15 @@ readme = "../README.md" | |
categories = ["command-line-interface", "config", "rust-patterns"] | ||
keywords = ["abscissa", "cli", "application", "framework", "service"] | ||
edition = "2021" | ||
rust-version = "1.60" | ||
rust-version = "1.74" | ||
|
||
[dependencies] | ||
abscissa_core = { version = "0.7", path = "../core" } | ||
abscissa_core = { version = "0.8", path = "../core" } | ||
clap = "4" | ||
handlebars = "6" | ||
ident_case = "1" | ||
serde = { version = "1", features = ["serde_derive"] } | ||
|
||
[dev-dependencies] | ||
abscissa_core = { version = "0.7", features = ["testing"], path = "../core" } | ||
abscissa_core = { version = "0.8", features = ["testing"], path = "../core" } | ||
once_cell = "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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ Application microframework with support for command-line option parsing, | |
configuration, error handling, logging, and terminal interactions. | ||
This crate contains the framework's core functionality. | ||
""" | ||
version = "0.7.0" | ||
version = "0.8.0" | ||
license = "Apache-2.0" | ||
authors = ["Tony Arcieri <[email protected]>"] | ||
homepage = "https://github.com/iqlusioninc/abscissa/" | ||
|
@@ -14,10 +14,10 @@ readme = "../README.md" | |
categories = ["command-line-interface", "config", "rust-patterns"] | ||
keywords = ["abscissa", "cli", "application", "framework", "service"] | ||
edition = "2021" | ||
rust-version = "1.60" | ||
rust-version = "1.74" | ||
|
||
[dependencies] | ||
abscissa_derive = { version = "0.7", path = "../derive" } | ||
abscissa_derive = { version = "0.8", path = "../derive" } | ||
backtrace = "0.3" | ||
canonical-path = "2" | ||
fs-err = "2" | ||
|
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,14 +1,14 @@ | ||
[package] | ||
name = "abscissa_derive" | ||
description = "Custom derive support for the abscissa application microframework" | ||
version = "0.7.0" | ||
version = "0.8.0" | ||
license = "Apache-2.0" | ||
authors = ["Tony Arcieri <[email protected]>"] | ||
homepage = "https://github.com/iqlusioninc/abscissa" | ||
repository = "https://github.com/iqlusioninc/abscissa/tree/main/derive" | ||
readme = "README.md" | ||
edition = "2021" | ||
rust-version = "1.60" | ||
rust-version = "1.74" | ||
|
||
[lib] | ||
proc-macro = true | ||
|
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
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,17 +1,17 @@ | ||
[package] | ||
name = "abscissa_tokio" | ||
description = "Support for launching Tokio runtimes within Abscissa applications" | ||
version = "0.7.0" | ||
version = "0.8.0" | ||
license = "Apache-2.0" | ||
authors = ["Tony Arcieri <[email protected]>"] | ||
homepage = "https://github.com/iqlusioninc/abscissa" | ||
repository = "https://github.com/iqlusioninc/abscissa/tree/main/tokio" | ||
readme = "README.md" | ||
edition = "2021" | ||
rust-version = "1.60" | ||
rust-version = "1.74" | ||
|
||
[dependencies] | ||
abscissa_core = { version = "0.7", path = "../core" } | ||
abscissa_core = { version = "0.8", path = "../core" } | ||
tokio = { version = "1", features = ["rt-multi-thread"] } | ||
actix-rt = { version = "2.2", optional = true } | ||
|
||
|
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