solverforge-service 0.2.5

JVM lifecycle management for SolverForge
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! SolverForge Service - JVM lifecycle management
//!
//! This crate manages the lifecycle of the solverforge-wasm-service Java process,
//! providing an embedded service option for SolverForge users who don't want
//! to manage the solver service separately.

mod config;
mod error;
mod jar;
mod service;
mod util;

pub use config::ServiceConfig;
pub use error::{ServiceError, ServiceResult};
pub use jar::JarManager;
pub use service::EmbeddedService;

pub use solverforge_core::{HttpSolverService, SolverService};