forked from Decentralised-Autonomous-Institutions/ondc-bap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
104 lines (81 loc) · 1.98 KB
/
Cargo.toml
File metadata and controls
104 lines (81 loc) · 1.98 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[workspace]
members = [
"ondc-bap",
"ondc-agent",
"ondc-crypto-traits",
"ondc-crypto-algorithms",
"ondc-crypto-formats",
"ondc-crypto-cli",
]
resolver = "2"
[workspace.dependencies]
# Core cryptographic dependencies
ed25519-dalek = "2.0"
blake2b_simd = "1.0"
x25519-dalek = "2.0"
rand = "0.8"
# Memory safety and security
zeroize = "1.7"
subtle = "2.5"
# Encoding and formatting
base64 = "0.21"
hex = "0.4"
# Time handling
chrono = { version = "0.4", features = ["serde"] }
# Error handling
thiserror = "1.0"
# Async support
tokio = { version = "1.0", features = ["full"] }
# HTTP and networking
reqwest = { version = "0.11", features = ["json", "native-tls"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
# Testing and development
proptest = "1.3"
criterion = "0.5"
# Web framework dependencies
axum = "0.7"
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "trace"] }
hyper = "1.0"
# Configuration
config = "0.14"
figment = { version = "0.10", features = ["toml", "env"] }
# Logging and tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-opentelemetry = "0.21"
# Error handling
anyhow = "1.0"
# Security
rustls = "0.22"
rustls-pemfile = "2.0"
# UUID generation
uuid = { version = "1.0", features = ["v4"] }
# URL parsing
url = "2.4"
# Regex for validation
regex = "1.0"
# AES encryption
aes = "0.8"
block-modes = "0.9"
# Documentation
mdbook = "0.4"
# Development tools
rustfmt = "0.1"
clippy = "0.1"
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Airesh Bhat(nelliairesh@gmail.com)"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ondc/ondc-crypto-rs"
description = "ONDC cryptographic utilities for Rust"
keywords = ["ondc", "crypto", "signing", "ed25519", "blake2"]
categories = ["cryptography", "api-bindings"]
readme = "README.md"
[workspace.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]