[package]
edition = "2021"
rust-version = "1.82"
name = "boatramp-node"
version = "0.2.12"
authors = ["Uranion <boatramp@uranion.ai>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Node assembly for boatramp: the parsed config model (and, incrementally, the config-to-running-node assembly) that the serve binary and library embedders share."
homepage = "https://boatramp.dev"
documentation = "https://docs.boatramp.dev"
readme = "README.md"
keywords = [
"serverless",
"wasm",
"faas",
"web-server",
"static-site",
]
categories = [
"web-programming::http-server",
"wasm",
"network-programming",
"command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/BoatRamp/BoatRamp"
[features]
acme-dns = []
azure = [
"dep:boatramp-storage",
"boatramp-storage/azure",
]
clap = ["dep:clap"]
cloudflare-kv = [
"dep:boatramp-storage",
"boatramp-storage/cloudflare-kv",
]
cluster = []
console = ["boatramp-server/console"]
fs = [
"dep:boatramp-storage",
"boatramp-storage/fs",
]
gcs = [
"dep:boatramp-storage",
"boatramp-storage/gcs",
]
handlers = [
"dep:boatramp-handlers",
"dep:boatramp-storage",
"boatramp-handlers/engine",
"boatramp-server/handlers",
"boatramp-storage/sql",
]
s3 = [
"dep:boatramp-storage",
"boatramp-storage/s3",
]
slatedb = [
"dep:boatramp-storage",
"boatramp-storage/slatedb",
]
sql-mysql = [
"handlers",
"boatramp-storage/sql-mysql",
]
sql-postgres = [
"handlers",
"boatramp-storage/sql-postgres",
]
tls = []
[lib]
name = "boatramp_node"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.boatramp-container]
version = "0.2.12"
[dependencies.boatramp-core]
version = "0.2.12"
[dependencies.boatramp-docker]
version = "0.2.12"
[dependencies.boatramp-firecracker]
version = "0.2.12"
features = [
"build",
"backend",
"embedded",
]
[dependencies.boatramp-handlers]
version = "0.2.12"
optional = true
[dependencies.boatramp-server]
version = "0.2.12"
[dependencies.boatramp-storage]
version = "0.2.12"
optional = true
[dependencies.boatramp-vz]
version = "0.2.12"
features = ["backend"]
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
optional = true
[dependencies.getrandom]
version = "0.2"
[dependencies.ron]
version = "0.10"
[dependencies.serde]
version = "1"
features = [
"derive",
"derive",
]
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"fs",
"io-util",
"io-std",
"net",
"process",
"signal",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.axum]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"fs",
"io-util",
"io-std",
"net",
"process",
"signal",
"macros",
"rt-multi-thread",
]
[dev-dependencies.tower]
version = "0.5"
features = ["util"]