All checks were successful
Native code generation / deterministic (push) Successful in 11m53s
Imaging and meshing gate / native (push) Successful in 4m3s
JPEG 2000 feature / linux (push) Successful in 2m33s
Native Rust workspace compile / compile (push) Successful in 4m3s
Skia feature / linux (push) Successful in 31m24s
33 lines
1.1 KiB
TOML
33 lines
1.1 KiB
TOML
[package]
|
|
name = "libremetaverse"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Rust rewrite shell for the LibreMetaverse client library"
|
|
|
|
[features]
|
|
default = ["dds-bc67"]
|
|
dds-bc67 = ["dep:bcdec_rs"]
|
|
jpeg2000 = ["libremetaverse-imaging/jpeg2000"]
|
|
|
|
[dependencies]
|
|
bcdec_rs = { version = "0.2.0", optional = true }
|
|
flate2 = "1.1.2"
|
|
futures-util = "0.3.31"
|
|
libremetaverse-imaging = { path = "../libremetaverse-imaging" }
|
|
libremetaverse-structured-data = { path = "../libremetaverse-structured-data" }
|
|
libremetaverse-types = { path = "../libremetaverse-types" }
|
|
mac_address2 = "2.0.2"
|
|
os_info = { version = "3.15.0", default-features = false }
|
|
reqwest = { version = "0.13.4", default-features = false, features = ["rustls", "stream"] }
|
|
roxmltree = "0.21.1"
|
|
tokio = { version = "1.47.1", features = ["macros", "net", "rt", "sync", "time"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.47.1", features = ["macros", "net", "rt-multi-thread", "sync", "test-util", "time"] }
|
|
|
|
[lints]
|
|
workspace = true
|