mirror of
https://github.com/amigan/rustypaste-pretty.git
synced 2024-11-21 11:59:48 -05:00
chore(project): update project details
This commit is contained in:
parent
ef57b48868
commit
d538e591ef
3 changed files with 24 additions and 24 deletions
40
Cargo.lock
generated
40
Cargo.lock
generated
|
@ -1234,26 +1234,6 @@ version = "1.8.0"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
|
||||
|
||||
[[package]]
|
||||
name = "oops"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"actix-files",
|
||||
"actix-multipart",
|
||||
"actix-rt 2.2.0",
|
||||
"actix-web",
|
||||
"byte-unit",
|
||||
"config",
|
||||
"dotenv",
|
||||
"env_logger",
|
||||
"futures-util",
|
||||
"infer",
|
||||
"log",
|
||||
"petname",
|
||||
"rand 0.8.4",
|
||||
"serde 1.0.126",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "opaque-debug"
|
||||
version = "0.3.0"
|
||||
|
@ -1552,6 +1532,26 @@ dependencies = [
|
|||
"semver 0.11.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rustypaste"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"actix-files",
|
||||
"actix-multipart",
|
||||
"actix-rt 2.2.0",
|
||||
"actix-web",
|
||||
"byte-unit",
|
||||
"config",
|
||||
"dotenv",
|
||||
"env_logger",
|
||||
"futures-util",
|
||||
"infer",
|
||||
"log",
|
||||
"petname",
|
||||
"rand 0.8.4",
|
||||
"serde 1.0.126",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "ryu"
|
||||
version = "1.0.5"
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
[package]
|
||||
name = "oops"
|
||||
name = "rustypaste"
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
description = "An obscure pastebin server"
|
||||
description = "A minimal file upload/pastebin service"
|
||||
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
|
||||
|
||||
[dependencies]
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
use actix_web::middleware::Logger;
|
||||
use actix_web::{App, HttpServer};
|
||||
use oops::config::Config;
|
||||
use oops::server;
|
||||
use rustypaste::config::Config;
|
||||
use rustypaste::server;
|
||||
use std::fs;
|
||||
use std::io::Result as IoResult;
|
||||
|
||||
|
|
Loading…
Reference in a new issue