Implement safe public LSL delivery (#129)
This commit is contained in:
15
crates/metacrate/Cargo.toml
Normal file
15
crates/metacrate/Cargo.toml
Normal file
@@ -0,0 +1,15 @@
|
||||
[package]
|
||||
name = "metacrate"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
rust-version.workspace = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
description = "Native MetaCrate APIs outside the LibreMetaverse compatibility surface"
|
||||
|
||||
[dependencies]
|
||||
metacrate-grid-agent = { version = "0.0.1", path = "../metacrate-grid-agent" }
|
||||
metacrate-lsl-tools = { version = "0.0.1", path = "../metacrate-lsl-tools" }
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
9
crates/metacrate/src/lib.rs
Normal file
9
crates/metacrate/src/lib.rs
Normal file
@@ -0,0 +1,9 @@
|
||||
//! Native MetaCrate functionality outside the original LibreMetaverse
|
||||
//! compatibility surface.
|
||||
//!
|
||||
//! Dependency direction is deliberate: this facade may expose MetaCrate
|
||||
//! components which consume LibreMetaverse compatibility APIs, while no
|
||||
//! `libremetaverse-*` crate may depend on or re-export this facade.
|
||||
|
||||
pub use metacrate_grid_agent as grid_agent;
|
||||
pub use metacrate_lsl_tools as lsl_tools;
|
||||
Reference in New Issue
Block a user