generated from bitwarden/template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 1 KB
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "bw-remote-python"
description = "PyO3 Python bindings for Bitwarden Remote Access"
version = "0.1.0"
authors = ["Bitwarden Inc"]
edition = "2024"
rust-version = "1.85"
license = "GPL-3.0"
publish = false
[lib]
name = "bw_remote_rs"
crate-type = ["cdylib"]
path = "src/lib.rs"
[dependencies]
ap-client = { path = "../../crates/ap-client", features = ["native-websocket"] }
ap-proxy-client = { path = "../../crates/ap-proxy-client", default-features = false, features = ["native-websocket"] }
ap-proxy-protocol = { path = "../../crates/ap-proxy-protocol" }
ap-noise = { path = "../../crates/ap-noise" }
async-trait = "0.1"
dirs = "5.0"
hex = "0.4"
pyo3 = { version = "0.24", features = ["extension-module"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.36.0", features = ["rt-multi-thread", "sync", "macros"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
[lints.clippy]
unwrap_used = "deny"
string_slice = "warn"