feat: 0.0.1-dev
- expose shared config get/update endpoint - interceptor for reporting changes from user - task[recipe]: optimize recipe send flow, add material action (create/update, modify[not test]) - add secured session, in addition to auth message, this is required to use for newer client (expect ^0.0.2 for client) - disable plugin mode - optimize ram/cpu usages (reduce from 300MB to ~80MB) Signed-off-by: Pakin <pakin.t@forth.co.th>
This commit is contained in:
parent
aa008ccd53
commit
317fcd4203
22 changed files with 3443 additions and 423 deletions
16
Cargo.toml
16
Cargo.toml
|
|
@ -8,25 +8,37 @@ async-compression = { version = "0.4.39", features = ["tokio", "brotli"] }
|
|||
axum = { version = "0.8.8", features = ["ws"] }
|
||||
axum-streams = { version = "0.24.0", features = ["json"] }
|
||||
celes = "2.6.0"
|
||||
chrono = "0.4.43"
|
||||
chrono = { version = "0.4.43", features = ["serde"] }
|
||||
crossbeam-queue = "0.3.12"
|
||||
dotenv = "0.15.0"
|
||||
env_logger = "0.11.9"
|
||||
futures = "0.3.32"
|
||||
futures-util = { version = "0.3.32", optional = true }
|
||||
libtbr = { git = "https://pakin-inspiron-15-3530.tail110d9.ts.net/pakin/libtbr.git", version = "0.1.1" }
|
||||
log = "0.4.29"
|
||||
openssl = { version = "0.10.80", features = ["vendored"] }
|
||||
rayon = "1.11.0"
|
||||
redis = { version = "1.0.2", features = ["tls-rustls-webpki-roots", "tokio-comp", "tokio-rustls-comp"] }
|
||||
reqwest = { version = "0.13.1", features = ["multipart", "rustls"] }
|
||||
reqwest = { version = "0.13.1", features = ["multipart", "rustls", "json"] }
|
||||
tracing = "0.1.41"
|
||||
serde = { version = "1.0.228", features = ["derive"] }
|
||||
serde_json = "1.0.149"
|
||||
sqlx = { version = "0.8.6", features = ["runtime-tokio", "tls-rustls", "sqlite"] }
|
||||
tokio = { version = "1.49.0", features = ["full"] }
|
||||
tokio-cron-scheduler = "0.15.1"
|
||||
tokio-stream = "0.1.18"
|
||||
tokio-tungstenite = { version = "0.29.0", features = ["connect"], optional = true }
|
||||
tokio-util = "0.7.18"
|
||||
uuid = { version = "1.20.0", features = ["v4"] }
|
||||
wasmtime = { version = "44.0.1", features = ["async"] }
|
||||
wasmtime-wasi = "44.0.1"
|
||||
wasmtime-wasi-http = "44.0.1"
|
||||
tokio-postgres = "0.7.17"
|
||||
pprof = { version = "0.15.0", features = ["flamegraph", "prost-codec"] }
|
||||
prost = "0.14.4"
|
||||
jsonwebtoken = { version = "10.4.0", features = ["rsa", "rust_crypto"] }
|
||||
aes-gcm = "0.10.3"
|
||||
base64 = "0.22.1"
|
||||
p256 = { version = "0.13.2", features = ["ecdh"] }
|
||||
rand_core = { version = "=0.6.4", features = ["getrandom"] }
|
||||
rand = "0.10.1"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue