41 lines
1.3 KiB
TOML
41 lines
1.3 KiB
TOML
[package]
|
|
name = "metacrate-grid-agent"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Bounded pure-Rust OpenSim grid-agent service foundation"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
crossterm = "0.29"
|
|
libremetaverse = { version = "0.0.1", path = "../libremetaverse", default-features = false, optional = true }
|
|
libremetaverse-types = { version = "0.0.1", path = "../libremetaverse-types" }
|
|
reqwest = { version = "0.13.4", default-features = false, features = ["rustls"] }
|
|
rustls = { version = "0.23.43", default-features = false, features = ["aws_lc_rs", "std", "tls12"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
sha2 = "0.11"
|
|
tokio = { version = "1.53.1", features = ["macros", "rt", "sync", "time"] }
|
|
tokio-rustls = { version = "0.26.4", default-features = false, features = ["aws_lc_rs", "tls12"] }
|
|
url = "2.5.8"
|
|
unicode-width = "0.2"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.53.1", features = ["test-util"] }
|
|
|
|
[target.'cfg(any(unix, windows))'.dependencies]
|
|
tokio = { version = "1.53.1", features = ["io-util", "net", "rt-multi-thread", "signal"] }
|
|
|
|
[features]
|
|
default = []
|
|
live-grid = ["dep:libremetaverse"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[[bin]]
|
|
name = "metacrate-grid-agent"
|
|
path = "src/main.rs"
|