-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (46 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
54 lines (46 loc) · 1.16 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "simcore"
version = "0.1.0"
edition = "2021"
description = "A generic discrete-event simulation framework"
readme = "readme.md"
homepage = "https://github.com/systems-group/simcore"
repository = "https://github.com/systems-group/simcore"
license = "MIT OR Apache-2.0"
keywords = ["simulation", "discrete-event", "framework", "distributed-systems", "async"]
categories = ["simulation", "asynchronous"]
include = ["/src", "/tests", "/examples", "LICENSE*", "changelog.md"]
[dependencies]
downcast-rs = "1.2"
log = "0.4"
rand = "0.8"
rand_pcg = "0.3"
serde = { version = "1.0", features = ["derive"] }
erased-serde = "0.4"
serde_json = { version = "1.0", features = ["preserve_order"] }
serde_type_name = "0.2"
colored = "2"
dyn-clone = "1"
futures = "0.3"
rustc-hash = "2"
[dev-dependencies]
env_logger = "0.11"
[features]
async_mode = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[workspace]
members = [
"examples/*"
]
[[example]]
name = "intro-async"
required-features = ["async_mode"]
[profile.release-debug]
inherits = "release"
debug = true
[profile.release-optimized]
inherits = "release"
codegen-units = 1
lto = "fat"