Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
198 changes: 0 additions & 198 deletions Cargo.lock

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

2 changes: 0 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ job = { version = "0.6.22", features = ["es-entity"] }
obix = { version = "0.2.26", default-features = false }

anyhow = "1.0.99"
async-graphql = { version = "8.0.0-rc.4", default-features = false, features = ["dataloader", "tracing", "chrono", "tokio"] }
base64 = { version = "0.22.1" }
cached = { version = "0.59", features = ["async"] }
chrono = { version = "0.4.44", features = ["clock", "serde"], default-features = false }
derive_builder = "0.20.1"
Expand Down
2 changes: 0 additions & 2 deletions cala-ledger-core-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,12 @@ license = "Apache-2.0"
[features]

fail-on-warnings = []
graphql = ["es-entity/graphql", "dep:async-graphql"]
json-schema = ["es-entity/json-schema", "dep:schemars", "cel-interpreter/json-schema"]

[dependencies]
cel-interpreter = { workspace = true }
es-entity = { workspace = true }

async-graphql = { workspace = true, optional = true }
schemars = { workspace = true, optional = true }
serde = { workspace = true }
serde_json = { workspace = true }
Expand Down
3 changes: 0 additions & 3 deletions cala-ledger-core-types/src/primitives.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ impl From<AccountSetId> for AccountId {
strum::Display,
strum::EnumString,
)]
#[cfg_attr(feature = "graphql", derive(async_graphql::Enum))]
#[sqlx(type_name = "DebitOrCredit", rename_all = "snake_case")]
#[serde(rename_all = "snake_case")]
#[cfg_attr(feature = "json-schema", derive(schemars::JsonSchema))]
Expand Down Expand Up @@ -105,7 +104,6 @@ impl From<DebitOrCredit> for CelValue {
#[derive(Default, Debug, Serialize, Deserialize, Clone, Copy, PartialEq, Eq, sqlx::Type)]
#[sqlx(type_name = "Status", rename_all = "snake_case")]
#[serde(rename_all = "snake_case")]
#[cfg_attr(feature = "graphql", derive(async_graphql::Enum))]
#[cfg_attr(feature = "json-schema", derive(schemars::JsonSchema))]
pub enum Status {
#[default]
Expand All @@ -115,7 +113,6 @@ pub enum Status {

#[derive(Default, Debug, Serialize, Deserialize, Clone, Copy, PartialEq, Eq, Hash, sqlx::Type)]
#[sqlx(type_name = "Layer", rename_all = "snake_case")]
#[cfg_attr(feature = "graphql", derive(async_graphql::Enum))]
#[cfg_attr(feature = "json-schema", derive(schemars::JsonSchema))]
pub enum Layer {
#[default]
Expand Down
4 changes: 0 additions & 4 deletions cala-ledger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ categories = ["finance"]
[features]

fail-on-warnings = []
graphql = ["es-entity/graphql", "dep:async-graphql", "dep:base64", "cala-types/graphql"]
json-schema = ["cala-types/json-schema", "job/json-schema", "es-entity/json-schema", "dep:schemars"]

[[bin]]
Expand All @@ -28,9 +27,6 @@ es-entity = { workspace = true }
job = { workspace = true }
obix = { workspace = true }

async-graphql = { workspace = true, optional = true }
base64 = { workspace = true, optional = true }

cached = { workspace = true }
chrono = { workspace = true }
derive_builder = { workspace = true }
Expand Down
Loading
Loading