-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:bitwarden/sdk into ps/rustfmt
# Conflicts: # crates/bitwarden-generators/src/passphrase.rs # crates/bitwarden-generators/src/password.rs # crates/bitwarden/src/tool/generators/username_forwarders/forwardemail.rs
- Loading branch information
Showing
48 changed files
with
1,542 additions
and
689 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 |
---|---|---|
@@ -0,0 +1,122 @@ | ||
--- | ||
name: Build Python Wheels | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- "main" | ||
- "rc" | ||
- "hotfix-rc" | ||
workflow_dispatch: | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
working-directory: languages/python | ||
|
||
jobs: | ||
generate_schemas: | ||
uses: ./.github/workflows/generate_schemas.yml | ||
|
||
setup: | ||
name: Setup | ||
runs-on: ubuntu-22.04 | ||
outputs: | ||
package_version: ${{ steps.retrieve-version.outputs.package_version }} | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
|
||
- name: Get Package Version | ||
id: retrieve-version | ||
run: | | ||
VERSION="$(grep -o '^version = ".*"' ../../crates/bitwarden-py/Cargo.toml | grep -Eo "[0-9]+\.[0-9]+\.[0-9]+")" | ||
echo "package_version=$VERSION" >> $GITHUB_OUTPUT | ||
build: | ||
name: Building Python wheel for - ${{ matrix.settings.os }} - ${{ matrix.settings.target }} | ||
runs-on: ${{ matrix.settings.os || 'ubuntu-latest' }} | ||
needs: | ||
- generate_schemas | ||
- setup | ||
env: | ||
_PACKAGE_VERSION: ${{ needs.setup.outputs.package_version }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
settings: | ||
- os: macos-12 | ||
target: x86_64-apple-darwin | ||
|
||
- os: macos-12 | ||
target: aarch64-apple-darwin | ||
|
||
- os: windows-2022 | ||
target: x86_64-pc-windows-msvc | ||
|
||
- os: ubuntu-22.04 | ||
target: x86_64-unknown-linux-gnu | ||
|
||
- os: ubuntu-22.04 | ||
target: aarch64-unknown-linux-gnu | ||
|
||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Install rust | ||
uses: dtolnay/rust-toolchain@439cf607258077187679211f12aa6f19af4a0af7 # stable | ||
with: | ||
toolchain: stable | ||
targets: ${{ matrix.settings.target }} | ||
|
||
- name: Cache cargo registry | ||
uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8 # v2.7.1 | ||
with: | ||
key: ${{ matrix.settings.target }}-cargo-${{ matrix.settings.os }} | ||
|
||
- name: Retrieve schemas | ||
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0 | ||
with: | ||
name: schemas.py | ||
path: ${{ github.workspace }}/languages/python/bitwarden_sdk | ||
|
||
- name: Build wheels | ||
if: ${{ matrix.settings.target != 'x86_64-unknown-linux-gnu' }} | ||
uses: PyO3/maturin-action@b9e8f88fd4448fdecf5095864cdc7e39a544aa9f # v1.40.7 | ||
with: | ||
target: ${{ matrix.settings.target }} | ||
args: --release --find-interpreter --sdist | ||
sccache: "true" | ||
manylinux: "2_28" # https://github.com/pola-rs/polars/pull/12211 | ||
working-directory: ${{ github.workspace }}/languages/python | ||
|
||
- name: Build wheels (Linux - x86_64) | ||
if: ${{ matrix.settings.target == 'x86_64-unknown-linux-gnu' }} | ||
uses: PyO3/maturin-action@b9e8f88fd4448fdecf5095864cdc7e39a544aa9f # v1.40.7 | ||
with: | ||
target: ${{ matrix.settings.target }} | ||
args: --release --find-interpreter --sdist | ||
container: quay.io/pypa/manylinux_2_28_x86_64:2023-11-20-745eb52 | ||
sccache: "true" | ||
manylinux: "2_28" # https://github.com/pola-rs/polars/pull/12211 | ||
working-directory: ${{ github.workspace }}/languages/python | ||
|
||
- name: Upload wheels | ||
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 | ||
with: | ||
name: bitwarden_sdk-${{ env._PACKAGE_VERSION }}-${{ matrix.settings.target }} | ||
path: ${{ github.workspace }}/target/wheels/bitwarden_sdk*.whl | ||
|
||
- name: Upload sdists | ||
if: ${{ matrix.settings.target == 'x86_64-unknown-linux-gnu' }} # we only need one sdist | ||
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 | ||
with: | ||
name: bitwarden_sdk-${{ env._PACKAGE_VERSION }}-sdist | ||
path: ${{ github.workspace }}/target/wheels/bitwarden_sdk-*.tar.gz |
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
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Bitwarden Crypto | ||
|
||
This is an internal crate for the Bitwarden SDK do not depend on this directly and use the | ||
[`bitwarden`](https://crates.io/crates/bitwarden) crate instead. | ||
|
||
This crate does not follow semantic versioning and the public interface may change at any time. |
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,33 @@ | ||
[package] | ||
name = "bitwarden-generators" | ||
version = "0.1.0" | ||
authors = ["Bitwarden Inc"] | ||
license-file = "LICENSE" | ||
repository = "https://github.com/bitwarden/sdk" | ||
homepage = "https://bitwarden.com" | ||
description = """ | ||
Internal crate for the bitwarden crate. Do not use. | ||
""" | ||
keywords = ["bitwarden"] | ||
edition = "2021" | ||
rust-version = "1.57" | ||
|
||
[features] | ||
mobile = ["uniffi"] # Mobile-specific features | ||
|
||
[dependencies] | ||
bitwarden-crypto = { path = "../bitwarden-crypto", version = "=0.1.0" } | ||
rand = ">=0.8.5, <0.9" | ||
reqwest = { version = ">=0.11, <0.12", features = [ | ||
"json", | ||
], default-features = false } | ||
schemars = { version = ">=0.8.9, <0.9", features = ["uuid1", "chrono"] } | ||
serde = { version = ">=1.0, <2.0", features = ["derive"] } | ||
serde_json = ">=1.0.96, <2.0" | ||
thiserror = ">=1.0.40, <2.0" | ||
uniffi = { version = "=0.25.2", optional = true } | ||
|
||
[dev-dependencies] | ||
rand_chacha = "0.3.1" | ||
tokio = { version = "1.35.1", features = ["rt", "macros"] } | ||
wiremock = "0.5.22" |
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,6 @@ | ||
# Bitwarden Generators | ||
|
||
This is an internal crate for the Bitwarden SDK do not depend on this directly and use the | ||
[`bitwarden`](https://crates.io/crates/bitwarden) crate instead. | ||
|
||
This crate does not follow semantic versioning and the public interface may change at any time. |
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,11 @@ | ||
mod passphrase; | ||
pub use passphrase::{passphrase, PassphraseError, PassphraseGeneratorRequest}; | ||
mod password; | ||
mod util; | ||
pub use password::{password, PasswordError, PasswordGeneratorRequest}; | ||
mod username; | ||
pub use username::{username, ForwarderServiceType, UsernameError, UsernameGeneratorRequest}; | ||
mod username_forwarders; | ||
|
||
#[cfg(feature = "mobile")] | ||
uniffi::setup_scaffolding!(); |
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.