mirror of
https://github.com/bitwarden/browser
synced 2026-01-07 19:13:39 +00:00
53 lines
1.4 KiB
TOML
53 lines
1.4 KiB
TOML
[package]
|
|
name = "chromium_importer"
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
version = { workspace = true }
|
|
publish = { workspace = true }
|
|
|
|
[dependencies]
|
|
aes = { workspace = true }
|
|
aes-gcm = "=0.10.3"
|
|
anyhow = { workspace = true }
|
|
async-trait = "=0.1.88"
|
|
base64 = { workspace = true }
|
|
cbc = { workspace = true, features = ["alloc"] }
|
|
dirs = { workspace = true }
|
|
hex = { workspace = true }
|
|
pbkdf2 = "=0.12.2"
|
|
rand = { workspace = true }
|
|
rusqlite = { version = "=0.37.0", features = ["bundled"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
sha1 = "=0.10.6"
|
|
tokio = { workspace = true, features = ["full"] }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
security-framework = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
chacha20poly1305 = { workspace = true }
|
|
windows = { workspace = true, features = [
|
|
"Wdk_System_SystemServices",
|
|
"Win32_Security_Cryptography",
|
|
"Win32_Security",
|
|
"Win32_Storage_FileSystem",
|
|
"Win32_System_IO",
|
|
"Win32_System_Memory",
|
|
"Win32_System_Pipes",
|
|
"Win32_System_ProcessStatus",
|
|
"Win32_System_Services",
|
|
"Win32_System_Threading",
|
|
"Win32_UI_Shell",
|
|
"Win32_UI_WindowsAndMessaging",
|
|
] }
|
|
verifysign = "=0.2.4"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
oo7 = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|