mirror of
https://github.com/Arcadia-Solutions/arcadia.git
synced 2025-12-16 23:14:15 -06:00
20 lines
852 B
TOML
20 lines
852 B
TOML
[package]
|
|
name = "arcadia-shared"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
indexmap = { version = "2.11.0", default-features = false, features = ["std", "serde"] }
|
|
anyhow = { version = "1.0.99", default-features = true, features = ["std"] }
|
|
sqlx = { version = "0.8", features = [ "runtime-tokio", "postgres", "chrono", "ipnetwork" ] }
|
|
bincode = { version = "2.0.1", features = ["serde"] }
|
|
reqwest = { version = "0.12", default-features = false, features = ["blocking", "rustls-tls"] }
|
|
thiserror = { version = "2.0.16", default-features = false }
|
|
chrono = { version = "0.4.41", default-features = false, features = ["serde"] }
|
|
ringmap = { version = "0.2.0", features = ["serde"] }
|
|
actix-web = "4"
|
|
log = "0.4"
|
|
parking_lot = "0.12.4"
|
|
utoipa = { version = "5.3.1", features = ["actix_extras"] }
|