adding conversations, better loading of enums
This commit is contained in:
parent
be42cb1235
commit
dddf53d352
5 changed files with 51 additions and 977 deletions
21
Cargo.lock
generated
21
Cargo.lock
generated
|
|
@ -18,6 +18,7 @@ dependencies = [
|
|||
"dotenv",
|
||||
"futures",
|
||||
"futures-util",
|
||||
"hex",
|
||||
"hkdf",
|
||||
"http-body-util",
|
||||
"hyper",
|
||||
|
|
@ -33,6 +34,8 @@ dependencies = [
|
|||
"sha1",
|
||||
"sha2",
|
||||
"sqlx",
|
||||
"strum",
|
||||
"strum_macros",
|
||||
"sysinfo",
|
||||
"tokio",
|
||||
"tokio-rustls",
|
||||
|
|
@ -3139,6 +3142,24 @@ dependencies = [
|
|||
"unicode-properties",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "strum"
|
||||
version = "0.27.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
|
||||
|
||||
[[package]]
|
||||
name = "strum_macros"
|
||||
version = "0.27.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
|
||||
dependencies = [
|
||||
"heck",
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "subtle"
|
||||
version = "2.6.1"
|
||||
|
|
|
|||
Loading…
Reference in a new issue