Cargo.toml (815B)
1 [package] 2 name = "taler-api" 3 version.workspace = true 4 edition.workspace = true 5 authors.workspace = true 6 homepage.workspace = true 7 repository.workspace = true 8 license-file.workspace = true 9 10 [dependencies] 11 listenfd = "1.0.0" 12 dashmap = "6.1" 13 base64.workspace = true 14 http-body-util.workspace = true 15 libdeflater.workspace = true 16 ed25519-dalek.workspace = true 17 tokio = { workspace = true, features = ["signal"] } 18 serde.workspace = true 19 tracing.workspace = true 20 serde_json.workspace = true 21 serde_path_to_error.workspace = true 22 axum.workspace = true 23 url.workspace = true 24 thiserror.workspace = true 25 taler-common.workspace = true 26 sqlx.workspace = true 27 jiff.workspace = true 28 29 [dev-dependencies] 30 taler-test-utils.workspace = true 31 criterion.workspace = true 32 fastrand.workspace = true 33 34 [[bench]] 35 name = "subject" 36 harness = false