Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ members = [
"clift",
"fastn",
"fastn-builtins",
"fastn-context",
"fastn-core",
"fastn-daemon",
"fastn-ds",
Expand Down Expand Up @@ -89,6 +90,7 @@ enum-iterator = "0.6"
enum-iterator-derive = "0.6"
env_logger = "0.11"
fastn-builtins.path = "fastn-builtins"
fastn-context.path = "fastn-context"
fastn-core.path = "fastn-core"
fastn-ds.path = "fastn-ds"
fastn-daemon.path = "fastn-daemon"
Expand Down
15 changes: 15 additions & 0 deletions fastn-context/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "fastn-context"
version = "0.1.0"
authors.workspace = true
edition.workspace = true
description.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
rust-version.workspace = true

[dependencies]
tokio.workspace = true
tokio-util = { version = "0.7", features = ["sync"] }
eyre.workspace = true
Loading