2024-06-03 00:40:54 +00:00
|
|
|
[package]
|
|
|
|
name = "panorama-core"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-06-21 20:43:19 +00:00
|
|
|
anyhow = { version = "1.0.86", features = ["backtrace"] }
|
2024-06-13 18:42:45 +00:00
|
|
|
backoff = { version = "0.4.0", features = ["tokio"] }
|
|
|
|
bimap = "0.6.3"
|
2024-06-03 00:40:54 +00:00
|
|
|
chrono = { version = "0.4.38", features = ["serde"] }
|
|
|
|
futures = "0.3.30"
|
2024-06-03 05:02:45 +00:00
|
|
|
itertools = "0.13.0"
|
2024-06-23 23:49:25 +00:00
|
|
|
schemars = "0.8.21"
|
2024-06-03 00:40:54 +00:00
|
|
|
serde = { version = "1.0.203", features = ["derive"] }
|
|
|
|
serde_json = "1.0.117"
|
2024-06-21 20:43:19 +00:00
|
|
|
serde_yaml = "0.9.34"
|
2024-06-21 21:45:29 +00:00
|
|
|
sqlx = { version = "0.7.4", features = [
|
|
|
|
"runtime-tokio",
|
|
|
|
"tls-rustls",
|
|
|
|
"macros",
|
|
|
|
"sqlite",
|
|
|
|
"uuid",
|
|
|
|
"chrono",
|
|
|
|
"regexp",
|
|
|
|
] }
|
2024-06-03 00:40:54 +00:00
|
|
|
sugars = "3.0.1"
|
|
|
|
tantivy = { version = "0.22.0", features = ["zstd"] }
|
|
|
|
tokio = { version = "1.38.0", features = ["full"] }
|
|
|
|
uuid = { version = "1.8.0", features = ["v7"] }
|
2024-06-18 19:16:51 +00:00
|
|
|
walkdir = "2.5.0"
|
2024-06-21 21:45:29 +00:00
|
|
|
wasmtime = { version = "22.0.0", default-features = false, features = [
|
|
|
|
"runtime",
|
|
|
|
"cranelift",
|
|
|
|
] }
|
2024-06-21 22:59:41 +00:00
|
|
|
wasmtime-wasi = "22.0.0"
|
2024-06-03 00:40:54 +00:00
|
|
|
|
|
|
|
[dependencies.async-imap]
|
|
|
|
version = "0.9.7"
|
|
|
|
default-features = false
|
|
|
|
features = ["runtime-tokio"]
|