forked from bitwarden/sdk-sm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (33 loc) · 897 Bytes
/
Cargo.toml
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
34
35
36
37
38
39
[package]
name = "bitwarden"
description = """
Bitwarden Secrets Manager SDK
"""
keywords = ["bitwarden", "secrets-manager"]
version.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
homepage.workspace = true
repository.workspace = true
license-file.workspace = true
[features]
default = ["secrets"]
no-memory-hardening = [
"bitwarden-core/no-memory-hardening",
] # Disable memory hardening features
secrets = [
"bitwarden-core/secrets",
"dep:bitwarden-sm",
"dep:bitwarden-generators",
] # Secrets manager API
wasm = ["bitwarden-core/wasm"] # WASM support
[dependencies]
bitwarden-core = { workspace = true }
bitwarden-generators = { workspace = true, optional = true }
bitwarden-sm = { workspace = true, optional = true }
thiserror = { workspace = true }
[dev-dependencies]
uuid = { workspace = true }
[lints]
workspace = true