1
0
mirror of https://github.com/ellmau/adf-obdd.git synced 2025-12-20 09:39:38 +01:00

Introduce separate server package

This commit is contained in:
monsterkrampe 2022-08-18 08:55:19 +02:00
parent f7302511be
commit 4e5a1fc1ff
No known key found for this signature in database
GPG Key ID: B8ADC1F5A5CE5057
4 changed files with 28 additions and 2 deletions

7
Cargo.lock generated
View File

@ -19,6 +19,13 @@ dependencies = [
"strum",
]
[[package]]
name = "adf-bdd-server"
version = "0.3.0"
dependencies = [
"adf_bdd",
]
[[package]]
name = "adf_bdd"
version = "0.3.1"

View File

@ -1,7 +1,7 @@
[workspace]
members=[ "lib", "bin" ]
members=[ "lib", "bin", "server" ]
default-members = [ "lib" ]
[profile.release]
lto = "fat"
codegen-units = 1
codegen-units = 1

16
server/Cargo.toml Normal file
View File

@ -0,0 +1,16 @@
[package]
name = "adf-bdd-server"
version = "0.3.0"
authors = ["Lukas Gerlach <lukas.gerlach@tu-dresden.de>"]
edition = "2021"
homepage = "https://ellmau.github.io/adf-obdd"
repository = "https://github.com/ellmau/adf-obdd"
license = "MIT"
exclude = ["res/", "./flake*", "*.nix", ".envrc", "_config.yml", "tarpaulin-report.*", "*~"]
description = "Offer Solving ADFs as a service"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
adf_bdd = { version="0.3.1", path="../lib", features = ["frontend"] }

3
server/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}