-
Notifications
You must be signed in to change notification settings - Fork 16
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 #78 from Achiefs/72-include-jammy-support
Include Jammy support
- Loading branch information
Showing
7 changed files
with
31 additions
and
17 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 |
---|---|---|
@@ -1,2 +1,5 @@ | ||
[target.'cfg(all(windows, target_env = "msvc"))'] | ||
rustflags = ["-C", "target-feature=+crt-static"] | ||
rustflags = ["-C", "target-feature=+crt-static"] | ||
|
||
[build] | ||
jobs = 4 |
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,28 +1,30 @@ | ||
[package] | ||
name = "fim" | ||
version = "0.4.2" | ||
version = "0.4.3" | ||
authors = ["José Fernández <´[email protected]´>"] | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
yaml-rust = "0.4" | ||
sha3 = "0.10.0" | ||
hex = "0.4.3" | ||
notify = "4.0.17" | ||
log = "0.4.11" | ||
simplelog = "0.12.0" | ||
gethostname = "0.4.0" | ||
simplelog = "0.12.0" # Candidate to remove | ||
itertools = "0.10.3" | ||
uuid = { version = "1.0.0", features = ["v4"] } | ||
reqwest = { version = "0.11", features = ["json", "stream"] } | ||
hex = "0.4.3" | ||
futures = "0.3.21" | ||
tokio = { version = "1.17.0", features = ["rt", "rt-multi-thread", "macros"] } | ||
tokio-util = { version = "0.7.1", features = ["codec"] } | ||
serde_json = "1.0.79" | ||
time = "0.3.9" | ||
ctrlc = { version = "3.2", features = ["termination"] } | ||
sha3 = { version = "0.10.0", default-features = false } | ||
log = { version = "0.4.11", default-features = false } | ||
gethostname = { version = "0.4.0", default-features = false } | ||
uuid = { version = "1.0.0", default-features = false, features = ["v4"] } | ||
reqwest = { version = "0.11", default-features = false, features = ["json", "stream", "rustls-tls"] } | ||
tokio = { version = "1.17.0", default-features = false, features = ["rt", "rt-multi-thread", "macros"] } | ||
tokio-util = { version = "0.7.1", default-features = false, features = ["codec"] } | ||
serde_json = { version = "1.0.79", default-features = false } | ||
time = { version = "0.3.17", default-features = false } | ||
ctrlc = { version = "3.2", default-features = false, features = ["termination"] } | ||
|
||
[target.'cfg(windows)'.dependencies] | ||
windows-service = "0.5.0" | ||
|
||
[dev-dependencies] | ||
|
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,3 +1,9 @@ | ||
fim (0.4.3-1) bionic; urgency=medium | ||
|
||
* More info: https://github.com/Achiefs/fim/releases/tag/v0.4.3 | ||
|
||
-- Jose Fernandez <[email protected]> Mon, 19 Dec 2022 23:51:00 +0000 | ||
|
||
fim (0.4.2-1) bionic; urgency=medium | ||
|
||
* More info: https://github.com/Achiefs/fim/releases/tag/v0.4.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
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 |
---|---|---|
|
@@ -99,6 +99,9 @@ rm -fr %{buildroot} | |
# ----------------------------------------------------------------------------- | ||
|
||
%changelog | ||
* Mon Dec 19 2022 support <[email protected]> - 0.4.3 | ||
- More info: https://github.com/Achiefs/fim/releases/tag/v0.4.3 | ||
|
||
* Tue Dec 13 2022 support <[email protected]> - 0.4.2 | ||
- More info: https://github.com/Achiefs/fim/releases/tag/v0.4.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