[package]
edition = "2024"
rust-version = "1.89"
name = "little-durable-objects"
version = "0.1.2"
build = "build.rs"
include = [
"/src/**",
"/tests/**",
"/proto/**",
"/migrations/**",
"/build.rs",
"/README.md",
"/LICENSE.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "little-durable-objects"
description = "Standalone regional durable-object control plane, host, and durability runtime"
readme = "README.md"
keywords = [
"actors",
"distributed-systems",
"durable-objects",
"serverless",
]
categories = [
"asynchronous",
"network-programming",
]
license = "MIT"
repository = "https://github.com/TerseAI/little-durable-objects"
[lib]
name = "little_durable_objects"
path = "src/lib.rs"
[[bin]]
name = "little-durable-objects"
path = "src/main.rs"
[[test]]
name = "postgres_storage"
path = "tests/postgres_storage.rs"
[dependencies.anyhow]
version = "1.0.104"
[dependencies.async-trait]
version = "0.1.92"
[dependencies.aws-lc-rs]
version = "1.18.0"
features = ["non-fips"]
default-features = false
[dependencies.axum]
version = "0.8"
[dependencies.base64]
version = "0.22.1"
[dependencies.bytes]
version = "1"
[dependencies.google-cloud-auth]
version = "1.15.0"
[dependencies.google-cloud-storage]
version = "1.17.0"
features = ["unstable-stream"]
[dependencies.jsonwebtoken]
version = "10.4"
features = ["aws_lc_rs"]
default-features = false
[dependencies.native-tls]
version = "0.2"
[dependencies.postgres-native-tls]
version = "0.5"
[dependencies.prost]
version = "0.14"
[dependencies.refinery]
version = "0.9.2"
features = ["tokio-postgres"]
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"rustls",
]
default-features = false
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.151"
[dependencies.subtle]
version = "2.6"
[dependencies.tempfile]
version = "3"
[dependencies.tokio]
version = "1"
features = [
"fs",
"io-std",
"io-util",
"macros",
"net",
"process",
"rt-multi-thread",
"signal",
"sync",
"time",
]
[dependencies.tokio-postgres]
version = "0.7"
[dependencies.tokio-stream]
version = "0.1"
features = ["net"]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dependencies.tonic]
version = "0.14"
features = [
"tls-aws-lc",
"tls-webpki-roots",
]
[dependencies.tonic-prost]
version = "0.14"
[dependencies.tracing]
version = "0.1.44"
[dependencies.tracing-subscriber]
version = "0.3.23"
features = ["env-filter"]
[dependencies.uuid]
version = "1"
features = ["v4"]
[build-dependencies.protoc-bin-vendored]
version = "3"
[build-dependencies.tonic-prost-build]
version = "0.14"