Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
name: Rust
"on":
push:
pull_request:
permissions:
contents: read
jobs:
build-test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@1.96.0
with:
components: clippy, rustfmt
- name: Cache cargo registry and target dir
uses: Swatinem/rust-cache@v2
with:
workspaces: Rust -> target
- name: Build
run: |
cd ./Rust
cargo build --workspace --all-targets
- name: Test
run: |
cd ./Rust
cargo test --workspace
- name: Clippy
run: |
cd ./Rust
cargo clippy --workspace --all-targets -- -D warnings
- name: Format check
run: |
cd ./Rust
cargo fmt --all -- --check
6 changes: 3 additions & 3 deletions .github/workflows/sonatype-jack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
# runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Python 3.10
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: 3.10
python-version: "3.10"
- name: Run jake from Sonatype
run: |-
cd ./Python
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ The SDK contains these parts:
3. [PHP code example](PHP/index.php)
4. [Python code examples](Python/examples)
5. [Go package and code](Go/ixapi/README.md)
6. [Maltego Transform](Maltego%20Transform/README.md)
6. [Rust crate and CLI](Rust/README.md)
7. [Maltego Transform](Maltego%20Transform/README.md)

Latest updates:
* 30.06.2026 - New Rust SDK and command-line client
* 30.11.2024 - 0.6.2 installable from [Python Package Index](https://pypi.org/project/intelx/)
* 06.06.2024 - Python supports "Export Leaked Accounts" of identity.intelx.io
* <s>02.02.2024 - Python Package moved to [Python Repository](https://github.com/IntelligenceX/Python)</s>
Expand Down
2 changes: 2 additions & 0 deletions Rust/.env.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
INTELX_KEY="00000000-0000-0000-0000-000000000000"
INTELX_BASE_URL="https://2.intelx.io"
2 changes: 2 additions & 0 deletions Rust/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/target
.env
Loading