forked from NewEriduPubSec/JaneDoe-ZS
34 lines
634 B
TOML
34 lines
634 B
TOML
|
[package]
|
||
|
name = "common"
|
||
|
edition = "2021"
|
||
|
version.workspace = true
|
||
|
|
||
|
[dependencies]
|
||
|
# Serialization
|
||
|
serde.workspace = true
|
||
|
toml.workspace = true
|
||
|
|
||
|
# Cryptography
|
||
|
password-hash.workspace = true
|
||
|
pbkdf2.workspace = true
|
||
|
rsa.workspace = true
|
||
|
rand_mt.workspace = true
|
||
|
|
||
|
# Database
|
||
|
sqlx.workspace = true
|
||
|
|
||
|
# Util
|
||
|
thiserror.workspace = true
|
||
|
rand.workspace = true
|
||
|
byteorder.workspace = true
|
||
|
regex.workspace = true
|
||
|
ansi_term.workspace = true
|
||
|
|
||
|
# Logging
|
||
|
env_logger.workspace = true
|
||
|
tracing.workspace = true
|
||
|
tracing-futures.workspace = true
|
||
|
tracing-log.workspace = true
|
||
|
tracing-subscriber.workspace = true
|
||
|
tracing-bunyan-formatter.workspace = true
|