diff options
Diffstat (limited to 'atuin/Cargo.toml')
| -rw-r--r-- | atuin/Cargo.toml | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/atuin/Cargo.toml b/atuin/Cargo.toml index 9085623c..bf038050 100644 --- a/atuin/Cargo.toml +++ b/atuin/Cargo.toml @@ -33,15 +33,13 @@ buildflags = ["--release"] atuin = { path = "/usr/bin/atuin" } [features] -# TODO(conradludgate) -# Currently, this keeps the same default built behaviour for v0.8 -# We should rethink this by the time we hit a new breaking change default = ["client", "sync", "server"] client = ["atuin-client"] sync = ["atuin-client/sync"] -server = ["atuin-server", "tracing-subscriber"] +server = ["atuin-server", "atuin-server-postgres", "tracing-subscriber"] [dependencies] +atuin-server-postgres = { path = "../atuin-server-postgres", version = "15.0.0", optional = true } atuin-server = { path = "../atuin-server", version = "15.0.0", optional = true } atuin-client = { path = "../atuin-client", version = "15.0.0", optional = true, default-features = false } atuin-common = { path = "../atuin-common", version = "15.0.0" } @@ -61,7 +59,6 @@ tokio = { workspace = true } async-trait = { workspace = true } interim = { workspace = true } base64 = { workspace = true } -crossbeam-channel = "0.5.1" clap = { workspace = true } clap_complete = "4.0.3" fs-err = { workspace = true } |
