forked from github-starred/komodo
* add terminal (ssh) apis * add core terminal exec method * terminal typescript client method * terminals WIP * backend for pty * add ts responses * about wire everything * add new blog * credit Skyfay * working * regen lock * 1.17.4-dev-1 * pty history * replace the test terminal impl with websocket (pty) * create api and improve frontend * fix fe * terminals * disable terminal api on periphery * implement write level terminal perms * remove unneeded * fix clippy * delete unneeded * fix waste cpu cycles * set TERM and COLORTERM for shell environment * fix xterm scrolling behavior * starship promp in periphery container terminal * kill all terminals on periphery shutdown signal * improve starship config and enable ssl in compose * use same scrollTop setter * fix periphery container distribution link * support custom command / args to init terminal * allow fully configurable init command * docker exec into container * add permissioning for container exec * add starship to core container * add delete all terminals * dev-2 * finished gen client * core need curl * hide Terminal trigger if disabled * 1.17.4
83 lines
2.1 KiB
TOML
83 lines
2.1 KiB
TOML
[package]
|
|
name = "komodo_core"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[[bin]]
|
|
name = "core"
|
|
path = "src/main.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# local
|
|
komodo_client = { workspace = true, features = ["mongo"] }
|
|
periphery_client.workspace = true
|
|
environment_file.workspace = true
|
|
formatting.workspace = true
|
|
response.workspace = true
|
|
command.workspace = true
|
|
logger.workspace = true
|
|
cache.workspace = true
|
|
git.workspace = true
|
|
# mogh
|
|
serror = { workspace = true, features = ["axum"] }
|
|
merge_config_files.workspace = true
|
|
async_timing_util.workspace = true
|
|
partial_derive2.workspace = true
|
|
derive_variants.workspace = true
|
|
mongo_indexed.workspace = true
|
|
resolver_api.workspace = true
|
|
toml_pretty.workspace = true
|
|
mungos.workspace = true
|
|
slack.workspace = true
|
|
svi.workspace = true
|
|
# external
|
|
aws-credential-types.workspace = true
|
|
tokio-tungstenite.workspace = true
|
|
ordered_hash_map.workspace = true
|
|
english-to-cron.workspace = true
|
|
openidconnect.workspace = true
|
|
jsonwebtoken.workspace = true
|
|
axum-server.workspace = true
|
|
urlencoding.workspace = true
|
|
aws-sdk-ec2.workspace = true
|
|
aws-config.workspace = true
|
|
tokio-util.workspace = true
|
|
axum-extra.workspace = true
|
|
tower-http.workspace = true
|
|
serde_json.workspace = true
|
|
serde_yaml.workspace = true
|
|
typeshare.workspace = true
|
|
chrono-tz.workspace = true
|
|
octorust.workspace = true
|
|
wildcard.workspace = true
|
|
arc-swap.workspace = true
|
|
dashmap.workspace = true
|
|
tracing.workspace = true
|
|
reqwest.workspace = true
|
|
futures.workspace = true
|
|
nom_pem.workspace = true
|
|
dotenvy.workspace = true
|
|
anyhow.workspace = true
|
|
croner.workspace = true
|
|
chrono.workspace = true
|
|
bcrypt.workspace = true
|
|
base64.workspace = true
|
|
rustls.workspace = true
|
|
tokio.workspace = true
|
|
serde.workspace = true
|
|
regex.workspace = true
|
|
axum.workspace = true
|
|
toml.workspace = true
|
|
uuid.workspace = true
|
|
envy.workspace = true
|
|
rand.workspace = true
|
|
hmac.workspace = true
|
|
sha2.workspace = true
|
|
hex.workspace = true
|