aboutsummaryrefslogtreecommitdiffstats
path: root/atuin-server/Cargo.toml
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2023-03-07 22:09:19 +0000
committerGitHub <noreply@github.com>2023-03-07 22:09:19 +0000
commitb978f9a4de662270a7874d16315f6827e58c2b0b (patch)
tree6668af01e951e31cd4320b1b2985d4506cbbdc3b /atuin-server/Cargo.toml
parentfix(client): always read session_path from settings (#757) (diff)
downloadatuin-b978f9a4de662270a7874d16315f6827e58c2b0b.zip
Add register notification webhook (#764)
I find it super motivating when people use my stuff, so this makes it _even easier_ to know when someone new signs up!
Diffstat (limited to 'atuin-server/Cargo.toml')
-rw-r--r--atuin-server/Cargo.toml4
1 files changed, 4 insertions, 0 deletions
diff --git a/atuin-server/Cargo.toml b/atuin-server/Cargo.toml
index 9a9c2890..59afa0ac 100644
--- a/atuin-server/Cargo.toml
+++ b/atuin-server/Cargo.toml
@@ -35,3 +35,7 @@ fs-err = "2.9"
chronoutil = "0.2.3"
tower = "0.4"
tower-http = { version = "0.3", features = ["trace"] }
+reqwest = { version = "0.11", features = [
+ "json",
+ "rustls-tls-native-roots",
+], default-features = false }