Skip to content

Commit

Permalink
Add descriptions to the workspace crates
Browse files Browse the repository at this point in the history
  • Loading branch information
rdaum committed Feb 10, 2024
1 parent 42ce100 commit d09b6aa
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions crates/compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "moor-compiler"
version = "0.1.0"
description = "Functions and structures for compilation and decompilation of MOO source, including opcode declarations and builtin declarations"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/console-host/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "moor-console-host"
version = "0.1.0"
description = "A tool to connect to a local or remote moor daemon and interact with it via the TTY."
edition.workspace = true
repository.workspace = true
license.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/daemon/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "moor-daemon"
version = "0.1.0"
description = "The actual moor binary that runs as an RPC-accessible daemon that various frontends can connect to."
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/db/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "moor-db"
version = "0.1.0"
description = "The database layer for the moor project."
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/kernel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "moor-kernel"
version = "0.1.0"
description = "The actual implementation of most of the moor system; virtual machine, scheduler, and builtins."
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/rpc-async-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "rpc-async-client"
version = "0.1.0"
description = "Utilities for connection to the 0MQ RPC server via tokio/async calls"
edition.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/rpc-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "rpc-common"
version = "0.1.0"
description = "Common entities used for 0MQ based RPC communication with the daemon."
edition.workspace = true
repository.workspace = true
license.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/rpc-sync-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "rpc-sync-client"
version = "0.1.0"
description = "Utilities for connection to the 0MQ RPC server via blocking synchronous calls"
edition.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/telnet-host/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "moor-telnet-host"
version = "0.1.0"
description = "A server which presents a classic LambdaMOO-style line-based TCP interface for interacting with a moor daemon."
edition.workspace = true
repository.workspace = true
license.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/values/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "moor-values"
version = "0.1.0"
description = "The set of values, and model/entities used across the system"
edition.workspace = true
repository.workspace = true
license.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/web-host/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "moor-web-host"
version = "0.1.0"
description = "A RESTful web front end for interacting with the moor system"
edition.workspace = true
repository.workspace = true
license.workspace = true
Expand Down

0 comments on commit d09b6aa

Please sign in to comment.