mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 13:17:08 +00:00

* Split out queue and cache config * Update usages of cache config, * Update default * Cleanup * Make queue optional. * config updates. * changelog * update spec config * Update tests * tweak import * Update default config. * fixup test * Update config.sample.yml Co-authored-by: Andrew Ferrazzutti <andrewf@element.io> Signed-off-by: Will Hunt <will@half-shot.uk> * Update encryption.md Signed-off-by: Will Hunt <will@half-shot.uk> * Clear up worker config Signed-off-by: Will Hunt <will@half-shot.uk> * Update src/config/Config.ts Co-authored-by: Andrew Ferrazzutti <andrewf@element.io> Signed-off-by: Will Hunt <will@half-shot.uk> * update helm config * move UserTokenStore.ts * Port all the imports to new path. * Port RSA handling to rust. * Add tests. * linting * lint rust * Remove unwraps / panics * fix build script * Ensure we store and check with algorithm and key was used. * quieten false deadcode warnings * changelog * fix test imports * lazy mock out UTS * Refactor so that UserTokenStore is initiated by the time Bridge is created. * update defaults * replace if with match * Use the magic of ? * fmt --------- Signed-off-by: Will Hunt <will@half-shot.uk> Co-authored-by: Andrew Ferrazzutti <andrewf@element.io>
29 lines
534 B
TOML
29 lines
534 B
TOML
[package]
|
|
name = "matrix-hookshot"
|
|
version = "5.2.1"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
napi = {version="2", features=["serde-json", "async"]}
|
|
napi-derive = "2"
|
|
url = "2"
|
|
serde_json = "1"
|
|
serde = "1"
|
|
serde_derive = "1"
|
|
contrast = "0"
|
|
rgb = "0"
|
|
md-5 = "0.10"
|
|
hex = "0.4"
|
|
rss = "2.0"
|
|
atom_syndication = "0.12"
|
|
ruma = { version = "0.9", features = ["events", "html"] }
|
|
reqwest = "0.11"
|
|
rand = "0.8.5"
|
|
rsa = "0.9.6"
|
|
base64ct = { version = "1.6.0", features = ["alloc"] }
|
|
[build-dependencies]
|
|
napi-build = "2"
|