19 lines
466 B
TOML
19 lines
466 B
TOML
[package]
|
|
name = "atproto"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
atrium-api = { version = "0.25.3", default-features = false }
|
|
lazy-regex = "3.4.1"
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
sqlx = { workspace = true, optional = true }
|
|
time = { version = "0.3.41", features = ["parsing", "formatting"] }
|
|
tracing-subscriber.workspace = true
|
|
tracing.workspace = true
|
|
thiserror.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
sqlx-support = ["dep:sqlx"]
|