-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (44 loc) · 1.64 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "fn_graph"
version = "0.13.3"
authors = ["Azriel Hoh <[email protected]>"]
edition = "2021"
description = "Dynamically managed function graph execution."
repository = "https://github.com/azriel91/fn_graph"
documentation = "https://docs.rs/fn_graph/"
readme = "README.md"
keywords = ["async", "batch", "dispatch", "function", "graph"]
license = "MIT OR Apache-2.0"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
daggy = { version = "0.8.0", default-features = false }
# Unable to be bumped until petgraph bumps its version.
#
# * https://github.com/petgraph/petgraph/pull/617
# * https://github.com/petgraph/petgraph/pull/664
fixedbitset = "0.4.0"
fn_meta = { version = "0.7.4", optional = true, features = ["fn_meta_ext"] }
interruptible = { version = "0.2.4", optional = true, features = ["stream"] }
resman = { version = "0.17", optional = true, features = ["debug"] }
futures = { version = "0.3.31", optional = true }
serde = { version = "1.0.210", optional = true, features = ["derive"] }
smallvec = "1.13"
tokio = { version = "1.40", features = ["sync"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2.95"
[dev-dependencies]
resman = { version = "0.17", features = ["debug", "fn_res", "fn_res_mut", "fn_meta"] }
tokio = { version = "1.40", features = ["macros", "rt", "sync", "time"] }
serde_yaml = "0.9.34"
[features]
default = ["async"]
async = ["futures"]
graph_info = ["dep:serde", "daggy/serde-1"]
interruptible = ["dep:interruptible"]
fn_res = ["resman?/fn_res"]
[[example]]
name = "simple"
required-features = ["fn_meta"]
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage_nightly)'] }