Preserves: #! is now #:

This commit is contained in:
Emery Hemingway 2024-02-08 15:50:19 +00:00
parent 40ad6a2dbc
commit 1827c91da0
5 changed files with 16 additions and 16 deletions

2
.gitignore vendored
View File

@ -1,2 +1,2 @@
/nim.cfg /nim.cfg
.*.check *.check

View File

@ -5,6 +5,6 @@ FileSystemUsage = <file-system-usage @path string @size int>.
# This assertion publishes a dataspace that proxies assertions with # This assertion publishes a dataspace that proxies assertions with
# an exception for <Observe …> which is pulsed every periodSec. # an exception for <Observe …> which is pulsed every periodSec.
# The pulse resolution is no more than one millisecond. # The pulse resolution is no more than one millisecond.
Pulse = <pulse @periodSec float @proxy #!any>. Pulse = <pulse @periodSec float @proxy #:any>.
XmlTranslation = <xml-translation @xml string @pr any>. XmlTranslation = <xml-translation @xml string @pr any>.

View File

@ -2,53 +2,53 @@ version 1 .
embeddedType EntityRef.Cap . embeddedType EntityRef.Cap .
CacheArguments = <cache { CacheArguments = <cache {
dataspace: #!any dataspace: #:any
lifetime: float lifetime: float
}>. }>.
FileSystemUsageArguments = <file-system-usage { FileSystemUsageArguments = <file-system-usage {
dataspace: #!any dataspace: #:any
}>. }>.
JsonTranslatorArguments = <json-stdio-translator { JsonTranslatorArguments = <json-stdio-translator {
argv: [string ...] argv: [string ...]
dataspace: #!any dataspace: #:any
}>. }>.
JsonTranslatorConnected = <connected @path string>. JsonTranslatorConnected = <connected @path string>.
JsonSocketTranslatorArguments = <json-socket-translator { JsonSocketTranslatorArguments = <json-socket-translator {
dataspace: #!any dataspace: #:any
socket: string socket: string
}>. }>.
PostgreArguments = <postgre { PostgreArguments = <postgre {
connection: [PostgreConnectionParameter ...] connection: [PostgreConnectionParameter ...]
dataspace: #!any dataspace: #:any
}>. }>.
PostgreConnectionParameter = [@key string @val string]. PostgreConnectionParameter = [@key string @val string].
PulseArguments = <pulse { PulseArguments = <pulse {
dataspace: #!any dataspace: #:any
}>. }>.
SqliteArguments = <sqlite { SqliteArguments = <sqlite {
database: string database: string
dataspace: #!any dataspace: #:any
}>. }>.
WebhooksArguments = <webhooks { WebhooksArguments = <webhooks {
endpoints: {[string ...]: #!any ...:...} endpoints: {[string ...]: #:any ...:...}
listen: Tcp listen: Tcp
}>. }>.
WebsocketArguments = <websocket { WebsocketArguments = <websocket {
dataspace: #!any dataspace: #:any
url: string url: string
}>. }>.
XmlTranslatorArguments = <xml-translator { XmlTranslatorArguments = <xml-translator {
dataspace: #!any dataspace: #:any
}>. }>.
# Reused from syndicate-protocols/transportAddress # Reused from syndicate-protocols/transportAddress

View File

@ -2,4 +2,4 @@ version 1 .
# When asserted the actor reponds to @target rows as records # When asserted the actor reponds to @target rows as records
# of the given label and row columns as record fields. # of the given label and row columns as record fields.
Query = <query @statement string @target #!any> . Query = <query @statement string @target #:any> .

View File

@ -1,13 +1,13 @@
# Package # Package
version = "20240205" version = "20240208"
author = "Emery Hemingway" author = "Emery Hemingway"
description = "Utilites for Syndicated Actors and Synit" description = "Utilites for Syndicated Actors and Synit"
license = "unlicense" license = "unlicense"
srcDir = "src" srcDir = "src"
bin = @["mintsturdyref", "mount_actor", "msg", "net_mapper", "preserve_process_environment", "syndex_card", "syndump"] bin = @["mintsturdyref", "mount_actor", "msg", "net_mapper", "preserve_process_environment", "syndesizer", "syndex_card", "syndump"]
# Dependencies # Dependencies
requires "nim >= 2.0.0", "illwill", "syndicate >= 20240114", "ws" requires "nim >= 2.0.0", "illwill", "syndicate >= 20240208", "ws"