-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (31 loc) · 1.01 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "biodivine-aeon-server"
version = "0.5.0-SNAPSHOT"
authors = ["Samuel Pastva <daemontus@gmail.com>"]
edition = "2021"
default-run = "biodivine-aeon-server"
# Enable rich docs for some online docs autogen services.
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "docs-head.html"]
[profile.release]
# This is important for profiling - otherwise we would get unreadable traces.
#debug = true
# This gives a marginally better runtime, but a much, much longer compile times, so disabled by default.
#lto = true
[dependencies]
biodivine-lib-bdd = "0.5.22"
biodivine-lib-param-bn = "0.5.13"
rocket = "0.5.1"
rocket_cors = "0.6.0"
json = "0.12.4"
regex = "1.11.1"
rand = "0.8.5"
futures = "0.3.31"
tokio = "1.41.1"
fixed-map = "0.9.5"
lazy_static = "1.5.0"
biodivine-pbn-control = { git = "https://github.com/sybila/biodivine-pbn-control", rev = "8ea98af977b43b5bdffd9455e824922be8eda97a" }
serde = { version = "1.0.215", features = ["derive"] }
num-bigint = "0.4.6"
num-traits = "0.2.19"
[dev-dependencies]