[package]
edition = "2021"
name = "flowr"
version = "1.0.0"
authors = ["Andrew Mackenzie <andrew@mackenzie-serres.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runners for compiled 'flow' programs"
homepage = "http://andrewdavidmackenzie.github.io/flow/"
documentation = "https://github.com/andrewdavidmackenzie/flow/README.md"
readme = "README.md"
license = "MIT"
repository = "https://github.com/andrewdavidmackenzie/flow/"
[badges.maintenance]
status = "actively-developed"
[features]
context = ["flowcore/context"]
debugger = [
"flowcore/debugger",
"rustyline",
]
default = [
"debugger",
"metrics",
"context",
"submission",
"flowstdlib",
]
metrics = []
submission = []
[lib]
name = "flowrlib"
path = "src/lib/lib.rs"
[[bin]]
name = "flowrcli"
path = "src/bin/flowrcli/main.rs"
[[bin]]
name = "flowrex"
path = "src/bin/flowrex/main.rs"
[[bin]]
name = "flowrgui"
path = "src/bin/flowrgui/main.rs"
[[example]]
name = "debug-help-string"
path = "examples/debug-help-string/main.rs"
[[example]]
name = "debug-print-args"
path = "examples/debug-print-args/main.rs"
[[example]]
name = "factorial"
path = "examples/factorial/main.rs"
[[example]]
name = "fibonacci"
path = "examples/fibonacci/main.rs"
[[example]]
name = "game-of-life"
path = "examples/game-of-life/main.rs"
[[example]]
name = "gcd"
path = "examples/gcd/main.rs"
[[example]]
name = "hamming"
path = "examples/hamming/main.rs"
[[example]]
name = "hello-world"
path = "examples/hello-world/main.rs"
[[example]]
name = "image-analysis"
path = "examples/image-analysis/main.rs"
[[example]]
name = "mandlebrot"
path = "examples/mandlebrot/main.rs"
[[example]]
name = "prime"
path = "examples/prime/main.rs"
[[example]]
name = "router"
path = "examples/router/main.rs"
[[example]]
name = "running-average"
path = "examples/running-average/main.rs"
[[example]]
name = "sequence-of-sequences"
path = "examples/sequence-of-sequences/main.rs"
[[example]]
name = "word-count"
path = "examples/word-count/main.rs"
[[test]]
name = "client_server"
path = "tests/client_server.rs"
[[test]]
name = "flowrex"
path = "tests/flowrex.rs"
[[test]]
name = "flowrgui"
path = "tests/flowrgui.rs"
[[test]]
name = "internal_classification"
path = "tests/internal_classification.rs"
[[test]]
name = "wasm"
path = "tests/wasm.rs"
[dependencies.clap]
version = "~4"
[dependencies.env_logger]
version = "0.11.10"
[dependencies.error-chain]
version = "0.12.2"
[dependencies.flowcore]
version = "1.0.0"
features = [
"context",
"file_provider",
"http_provider",
"context",
"meta_provider",
]
[dependencies.flowstdlib]
version = "1.0.0"
optional = true
[dependencies.iced]
version = "0.14.0"
features = [
"canvas",
"tokio",
"debug",
"wgpu",
"tiny-skia",
"image",
"wayland",
"x11",
"unconditional-rendering",
]
default-features = false
[dependencies.iced_aw]
version = "0.14.1"
features = [
"tabs",
"card",
]
default-features = false
[dependencies.image]
version = "0.25.10"
features = ["png"]
default-features = false
[dependencies.log]
version = "0.4.30"
[dependencies.mdns-sd]
version = "0.20"
default-features = false
[dependencies.once_cell]
version = "1.21.4"
[dependencies.portpicker]
version = "0.1.1"
[dependencies.rand]
version = "0.10"
[dependencies.rfd]
version = "0.17"
[dependencies.rustyline]
version = "18.0.0"
optional = true
[dependencies.serde]
version = "~1.0"
[dependencies.serde_derive]
version = "~1.0"
[dependencies.serde_json]
version = "1.0"
default-features = false
[dependencies.simpath]
version = "~2.5"
features = ["urls"]
[dependencies.tokio]
version = "1"
features = ["sync"]
[dependencies.url]
version = "2.2"
features = ["serde"]
[dependencies.wasmtime]
version = "45.0.0"
features = [
"runtime",
"cranelift",
]
default-features = false
[dependencies.zmq]
version = "0.10.0"
[dev-dependencies.flowstdlib]
version = "1.0.0"
[dev-dependencies.iced_test]
version = "0.14.0"
[dev-dependencies.portpicker]
version = "0.1.1"
[dev-dependencies.serial_test]
version = "3.5.0"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
indexing_slicing = "deny"
result_large_err = "allow"
unwrap_used = "deny"
[lints.rust]
missing_docs = "deny"
unsafe_code = "forbid"