Some checks failed
Native code generation / deterministic (push) Failing after 2m19s
Imaging and meshing gate / native (push) Failing after 4m24s
JPEG 2000 feature / linux (push) Successful in 2m50s
Native Rust workspace compile / compile (push) Failing after 15m31s
Skia feature / linux (push) Successful in 31m51s
58 lines
1.4 KiB
TOML
58 lines
1.4 KiB
TOML
[package]
|
|
name = "libremetaverse-programs"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
libremetaverse = { path = "../crates/libremetaverse", default-features = false }
|
|
libremetaverse-imaging = { path = "../crates/libremetaverse-imaging", features = ["jpeg2000"] }
|
|
libremetaverse-imaging-skia = { path = "../crates/libremetaverse-imaging-skia", features = ["skia"] }
|
|
libremetaverse-structured-data = { path = "../crates/libremetaverse-structured-data" }
|
|
libremetaverse-voice-vivox = { path = "../crates/libremetaverse-voice-vivox" }
|
|
regex = "1.12"
|
|
roxmltree = "0.21.1"
|
|
tokio = { version = "1.47", features = ["io-std", "io-util", "macros", "net", "rt-multi-thread", "signal", "sync", "time"] }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[[bin]]
|
|
name = "irc-gateway"
|
|
path = "src/bin/irc_gateway.rs"
|
|
|
|
[[bin]]
|
|
name = "inventory-explorer"
|
|
path = "src/bin/inventory_explorer.rs"
|
|
|
|
[[bin]]
|
|
name = "packet-dump"
|
|
path = "src/bin/packet_dump.rs"
|
|
|
|
[[bin]]
|
|
name = "prim-inspector"
|
|
path = "src/bin/prim_inspector.rs"
|
|
|
|
[[bin]]
|
|
name = "simple-bot"
|
|
path = "src/bin/simple_bot.rs"
|
|
|
|
[[bin]]
|
|
name = "test-client"
|
|
path = "src/bin/test_client.rs"
|
|
|
|
[[bin]]
|
|
name = "vivox-test"
|
|
path = "src/bin/vivox_test.rs"
|
|
|
|
[[bin]]
|
|
name = "webrtc-test"
|
|
path = "src/bin/webrtc_test.rs"
|
|
|
|
[[bin]]
|
|
name = "osd-inspector"
|
|
path = "src/bin/osd_inspector.rs"
|