Skip to content

Commit

Permalink
Merge pull request #78 from Achiefs/72-include-jammy-support
Browse files Browse the repository at this point in the history
Include Jammy support
  • Loading branch information
okynos authored Dec 27, 2022
2 parents 6c5e4f4 + 89d9d00 commit 328967a
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 17 deletions.
5 changes: 4 additions & 1 deletion .cargo/config.toml
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
28 changes: 15 additions & 13 deletions Cargo.toml
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]
Expand Down
6 changes: 6 additions & 0 deletions pkg/deb/debian/changelog
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
Expand Down
2 changes: 1 addition & 1 deletion pkg/fim.1
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
.\" *
.\" **************************************************************************
.\"
.TH fim 1 "01 Jun 2022" "FIM 0.4.2" "FIM Manual"
.TH fim 1 "01 Jun 2022" "FIM 0.4.3" "FIM Manual"

.SH NAME
.B FIM
Expand Down
2 changes: 1 addition & 1 deletion pkg/msi/fim.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
<Product Name='File Integrity Monitor' Manufacturer='Achiefs LLC.' Id='*'
UpgradeCode='5b9136b1-f19d-4af0-9efe-356fabdf1467'
Language='1033' Codepage='1252' Version='0.4.2'>
Language='1033' Codepage='1252' Version='0.4.3'>
<Package Id='*' Keywords='Installer'
Description="FIM is a Host-based file monitoring tool that performs file system analysis and real time alerting."
Comments='FIM is an open source application, coded in Rust.'
Expand Down
3 changes: 3 additions & 0 deletions pkg/rpm/fim.spec
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (C) 2021, Achiefs.

// Global constants definitions
pub const VERSION: &str = "0.4.2";
pub const VERSION: &str = "0.4.3";
pub const NETWORK_MODE: &str = "NETWORK";
pub const FILE_MODE: &str = "FILE";
pub const BOTH_MODE: &str = "BOTH";
Expand Down

0 comments on commit 328967a

Please sign in to comment.