mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-27 16:48:58 +00:00
73bde843d6
* refactor(common): introduce rustfs-data-usage core crate * refactor(concurrency): migrate workers crate into concurrency * refactor(crypto): migrate appauth token APIs into crypto * fix docs urls * remove unused crate * refactor(data-usage): switch consumers to rustfs-data-usage * chore(fmt): apply cargo fmt and lockfile sync * refactor(common): remove data_usage compatibility re-export * refactor(capacity): move capacity_scope to object-capacity * refactor(io-metrics): relocate internode metrics from common * refactor(common): decouple scanner report from madmin * chore(fmt): normalize import ordering after pre-commit * refactor(s3): split s3 types and ops crates * refactor(s3): centralize event version and safe parsing * refactor(s3): add op-event compatibility guardrails * refactor(s3): add runtime op-event mismatch observability * refactor(s3): extract delete event mapping helper * refactor(s3): extract put event mapping helper * refactor(s3): consolidate remaining event semantic helpers * refactor(s3): add op-event coverage checks and observability alerts * refactor(s3-ops): consolidate op-event semantic mapping * refactor(scanner): remove last_minute wrapper module * refactor(scanner): consolidate duplicated data usage models
64 lines
1.9 KiB
TOML
64 lines
1.9 KiB
TOML
# Copyright 2024 RustFS Team
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
[package]
|
|
name = "rustfs-crypto"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
version.workspace = true
|
|
homepage.workspace = true
|
|
description = "Cryptography and security features for RustFS, providing encryption, hashing, and secure authentication mechanisms."
|
|
keywords = ["cryptography", "encryption", "hashing", "rustfs", "Minio"]
|
|
categories = ["web-programming", "development-tools", "cryptography"]
|
|
documentation = "https://docs.rs/rustfs-crypto/latest/rustfs_crypto/"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
aes-gcm = { workspace = true, optional = true }
|
|
argon2 = { workspace = true, optional = true }
|
|
chacha20poly1305 = { workspace = true, optional = true }
|
|
jsonwebtoken = { workspace = true }
|
|
base64-simd = { workspace = true }
|
|
pbkdf2 = { workspace = true, optional = true }
|
|
rand = { workspace = true, optional = true }
|
|
rsa = { workspace = true, features = ["sha2"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
sha2 = { workspace = true, optional = true }
|
|
thiserror.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
|
|
[dev-dependencies]
|
|
test-case.workspace = true
|
|
time.workspace = true
|
|
|
|
[features]
|
|
default = ["crypto", "fips"]
|
|
fips = []
|
|
crypto = [
|
|
"dep:aes-gcm",
|
|
"dep:argon2",
|
|
"dep:chacha20poly1305",
|
|
"dep:pbkdf2",
|
|
"dep:rand",
|
|
"dep:sha2",
|
|
]
|
|
|
|
[lib]
|
|
doctest = false
|