-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(agentwire): Initial commit, extracted from
orb-core
(#284)
* Extract agentwire from orb-core * Fix workspace inheritance, change email * Re-format * fix macos * fix license check --------- Co-authored-by: Ryan Butler <thebutlah@gmail.com>
- Loading branch information
Showing
17 changed files
with
3,098 additions
and
7 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
[workspace] | ||
resolver = "2" | ||
members = [ | ||
"agentwire", | ||
"agentwire/macros", | ||
"artificer", | ||
"attest", | ||
"attest/dbus", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
[package] | ||
name = "agentwire" | ||
version = "0.0.1" | ||
authors = ["Valentyn Valiaiev <valentyn.valiaiev@toolsforhumanity.com>"] | ||
description = """ | ||
A framework for asynchronous message-passing agents. | ||
""" | ||
publish = false | ||
|
||
# orb-core can't consume crates that use workspace inheritance :( | ||
edition.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
rust-version.workspace = true | ||
|
||
[features] | ||
sandbox-network = [] | ||
|
||
[dependencies.agentwire-macros] | ||
version = "=0.0.1" | ||
path = "macros" | ||
|
||
[dependencies] | ||
close_fds = "0.3.2" | ||
futures = "0.3" | ||
libc = "0.2.93" | ||
nix = { version = "0.26.2", default-features = false, features = ["signal", "fs", "mman", "sched"] } | ||
rkyv = "0.7.40" | ||
shell-words = "1.1.0" | ||
thiserror = "1.0.61" | ||
tokio = { version = "1", features = ["rt-multi-thread", "process", "sync", "time", "io-util"] } | ||
tracing = "0.1" | ||
|
||
[dev-dependencies] | ||
tokio = { version = "1", features = ["macros"] } | ||
|
||
[package.metadata.orb] | ||
unsupported_targets = ["aarch64-apple-darwin", "x86_64-apple-darwin"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[package] | ||
name = "agentwire-macros" | ||
version = "0.0.1" | ||
authors = ["Valentine Valyaeff <valentine.valyaeff@gmail.com>"] | ||
description = """ | ||
Procedural macros for agentwire. | ||
""" | ||
publish = false | ||
|
||
edition.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
rust-version.workspace = true | ||
|
||
[lib] | ||
proc-macro = true | ||
|
||
[dependencies] | ||
heck = "0.5.0" | ||
proc-macro2 = "1.0.79" | ||
quote = "1.0.35" | ||
syn = { version = "2.0.55", features = ["extra-traits"] } |
Oops, something went wrong.