Skip to content

Commit

Permalink
chore: remove unused core/statements module
Browse files Browse the repository at this point in the history
  • Loading branch information
vindard committed Jan 22, 2025
1 parent e8800a1 commit 68638f5
Show file tree
Hide file tree
Showing 32 changed files with 49 additions and 933 deletions.
17 changes: 0 additions & 17 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

61 changes: 49 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ members = [
"core/money",
"core/chart-of-accounts",
"core/deposit",
"core/statements",

"lib/authz",
"lib/audit",
Expand All @@ -34,35 +33,64 @@ cala-ledger = { git = "https://github.com/galoymoney/cala.git", branch = "main"
# cala-types = "0.3.1"

anyhow = "1.0.95"
async-graphql = { version = "7.0.11", default-features = false, features = ["dataloader", "tracing", "chrono", "playground"] }
async-graphql = { version = "7.0.11", default-features = false, features = [
"dataloader",
"tracing",
"chrono",
"playground",
] }
async-graphql-axum = "7.0.9"
async-trait = "0.1.80"
axum = { version = "0.7.9", features = ["macros"] }
axum-extra = { version = "0.9.6", default-features = false, features = ["tracing", "typed-header"] }
chrono = { version = "0.4.31", features = ["clock", "serde"], default-features = false }
axum-extra = { version = "0.9.6", default-features = false, features = [
"tracing",
"typed-header",
] }
chrono = { version = "0.4.31", features = [
"clock",
"serde",
], default-features = false }
clap = { version = "4.5", features = ["derive", "env"] }
derive_builder = "0.20.0"
graphql_client = {version = "0.14.0", features = ["reqwest-rustls"]}
sqlx = { version = "0.8.2", features = [ "runtime-tokio-rustls", "postgres", "rust_decimal", "uuid", "chrono", "json" ] }
graphql_client = { version = "0.14.0", features = ["reqwest-rustls"] }
sqlx = { version = "0.8.2", features = [
"runtime-tokio-rustls",
"postgres",
"rust_decimal",
"uuid",
"chrono",
"json",
] }
thiserror = "1.0.69"
uuid = { version = "1.11", features = ["serde", "v4"] }
tracing = "0.1.40"
tracing-opentelemetry = "0.25.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }
opentelemetry = { version = "0.24.0" }
opentelemetry_sdk = { version = "0.24.1", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.17.0", features = ["http-proto", "reqwest-client"] }
opentelemetry-otlp = { version = "0.17.0", features = [
"http-proto",
"reqwest-client",
] }
opentelemetry-http = "0.13"
opentelemetry-semantic-conventions = "0.16.0"
tokio = { version = "1.43", features = ["rt-multi-thread", "macros", "time", "sync"] }
tokio = { version = "1.43", features = [
"rt-multi-thread",
"macros",
"time",
"sync",
] }
tokio-stream = { version = "0.1.16", features = ["sync"] }
strum = { version = "0.26", features = ["derive"] }
serde = { version = "1.0.214", features = ["derive"] }
serde_yaml = "0.9.32"
serde_json = "1.0.133"
serde_with = "3.8.1"
futures = "0.3.29"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
reqwest = { version = "0.12", default-features = false, features = [
"json",
"rustls-tls",
] }
rust_decimal_macros = "1.34.2"
rust_decimal = "1.35.0"
rusty-money = { version = "0.4", features = ["iso", "crypto"] }
Expand All @@ -72,12 +100,21 @@ hex = "0.4.3"
hmac = "0.12.1"
sha2 = "0.10.8"
tower-http = { version = "0.5.2", features = ["cors"] }
sqlx-adapter = { version = "1.6.0", default-features = false, features = ["postgres", "runtime-tokio-rustls"]}
sqlx-adapter = { version = "1.6.0", default-features = false, features = [
"postgres",
"runtime-tokio-rustls",
] }
ory-kratos-client = "1.1.0"
cached = { version = "0.53.1", features = ["async"] }
gcp_auth = { version = "0.12.2", features = ["webpki-roots"] }
gcp-bigquery-client = { git = "https://github.com/bodymindarts/gcp-bigquery-client.git", branch = "feat--webpki", features = ["rust-tls"] }
cloud-storage = { version = "0.11.1",default-features = false, features = ["rustls-tls", "sync", "global-client"] }
gcp-bigquery-client = { git = "https://github.com/bodymindarts/gcp-bigquery-client.git", branch = "feat--webpki", features = [
"rust-tls",
] }
cloud-storage = { version = "0.11.1", default-features = false, features = [
"rustls-tls",
"sync",
"global-client",
] }
rand = "0.8"

[profile.release]
Expand Down
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ sqlx-prepare:
cd core/user && cargo sqlx prepare
cd core/deposit && cargo sqlx prepare
cd core/chart-of-accounts && cargo sqlx prepare
cd core/statements && cargo sqlx prepare
cd lana/app && cargo sqlx prepare
cd lana/dashboard && cargo sqlx prepare

Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 68638f5

Please sign in to comment.