chore: add mime_guess2, quick-xml serialize feature, and config crate to room lib
This commit is contained in:
parent
4d5c62e46a
commit
4e955d9ae3
3
Cargo.lock
generated
3
Cargo.lock
generated
@ -5861,6 +5861,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
|
||||
dependencies = [
|
||||
"memchr",
|
||||
"serde",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@ -6405,6 +6406,7 @@ dependencies = [
|
||||
"anyhow",
|
||||
"async-openai",
|
||||
"chrono",
|
||||
"config",
|
||||
"dashmap",
|
||||
"db",
|
||||
"deadpool-redis",
|
||||
@ -7156,6 +7158,7 @@ dependencies = [
|
||||
"http 1.4.0",
|
||||
"jwt-simple",
|
||||
"lopdf",
|
||||
"mime_guess2",
|
||||
"models",
|
||||
"moka",
|
||||
"p256",
|
||||
|
||||
@ -147,7 +147,7 @@ calamine = "0.26"
|
||||
csv = "1.3"
|
||||
lopdf = "0.34"
|
||||
pulldown-cmark = "0.12"
|
||||
quick-xml = "0.37"
|
||||
quick-xml = { version = "0.37", features = ["serialize"] }
|
||||
sqlparser = "0.55"
|
||||
lazy_static = "1.5"
|
||||
md5 = "0.7"
|
||||
|
||||
@ -22,6 +22,7 @@ db = { workspace = true }
|
||||
session = { workspace = true }
|
||||
queue = { workspace = true }
|
||||
agent = { path = "../agent" }
|
||||
config = { path = "../config" }
|
||||
|
||||
serde = { workspace = true, features = ["derive"] }
|
||||
serde_json = { workspace = true }
|
||||
|
||||
@ -61,6 +61,7 @@ rust_decimal = { workspace = true }
|
||||
calamine = { workspace = true }
|
||||
csv = { workspace = true }
|
||||
quick-xml = { workspace = true }
|
||||
mime_guess2 = { workspace = true }
|
||||
lopdf = { workspace = true }
|
||||
pulldown-cmark = { workspace = true }
|
||||
sqlparser = { workspace = true }
|
||||
|
||||
Loading…
Reference in New Issue
Block a user