mirror of https://github.com/PiyushXCoder/lupt.git
commit
aa816cd214
|
|
@ -423,6 +423,7 @@ dependencies = [
|
||||||
"percent-encoding",
|
"percent-encoding",
|
||||||
"pin-project-lite",
|
"pin-project-lite",
|
||||||
"rand",
|
"rand",
|
||||||
|
"rustls",
|
||||||
"serde",
|
"serde",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"serde_urlencoded",
|
"serde_urlencoded",
|
||||||
|
|
@ -971,7 +972,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "lupt"
|
name = "lupt"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"actix",
|
"actix",
|
||||||
"actix-broker",
|
"actix-broker",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "lupt"
|
name = "lupt"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
description = "Chat app for lupt(लुप्त) users!"
|
description = "Chat app for lupt(लुप्त) users!"
|
||||||
authors = ["Piyush Raj <piyush.raj.kit@gmail.com>"]
|
authors = ["Piyush Raj <piyush.raj.kit@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
@ -19,7 +19,7 @@ actix-web-actors = "4"
|
||||||
actix-web-middleware-redirect-https = { git = "https://github.com/PiyushXCoder/actix-web-middleware-redirect-https.git" }
|
actix-web-middleware-redirect-https = { git = "https://github.com/PiyushXCoder/actix-web-middleware-redirect-https.git" }
|
||||||
actix-broker = "0.4"
|
actix-broker = "0.4"
|
||||||
actix-files = "0.6"
|
actix-files = "0.6"
|
||||||
awc = "3.1"
|
awc = { version = "3.1", features = ["rustls"] }
|
||||||
clap = { version = "4", features = ["derive"] }
|
clap = { version = "4", features = ["derive"] }
|
||||||
lazy_static = "1.4"
|
lazy_static = "1.4"
|
||||||
serde = { version = "1.0", features = ["serde_derive"] }
|
serde = { version = "1.0", features = ["serde_derive"] }
|
||||||
|
|
|
||||||
|
|
@ -18,5 +18,5 @@
|
||||||
mod kaksh_full_error;
|
mod kaksh_full_error;
|
||||||
mod user_kunjika_error;
|
mod user_kunjika_error;
|
||||||
|
|
||||||
pub use kaksh_full_error::KakshFullError;
|
// pub use kaksh_full_error::KakshFullError;
|
||||||
pub use user_kunjika_error::AlreadyExistError;
|
// pub use user_kunjika_error::AlreadyExistError;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue