fix: renamed the project to better fit its use
This commit is contained in:
parent
14b0531680
commit
9c33cd843a
4 changed files with 6 additions and 6 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1957,7 +1957,7 @@ dependencies = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "skynet_ldap_server"
|
name = "skynet_ldap_backend"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-std",
|
"async-std",
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[package]
|
[package]
|
||||||
name = "skynet_ldap_server"
|
name = "skynet_ldap_backend"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
use dotenv::dotenv;
|
use dotenv::dotenv;
|
||||||
use ldap3::{LdapConn, Mod};
|
use ldap3::{LdapConn, Mod};
|
||||||
use skynet_ldap_server::{get_config, Config};
|
use skynet_ldap_backend::{get_config, Config};
|
||||||
use std::env;
|
use std::env;
|
||||||
|
|
||||||
#[async_std::main]
|
#[async_std::main]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
use skynet_ldap_server::methods::account_new::{post_new_account, post_new_account_confirmation};
|
use skynet_ldap_backend::methods::account_new::{post_new_account, post_new_account_confirmation};
|
||||||
use skynet_ldap_server::methods::account_update::post_update_ldap;
|
use skynet_ldap_backend::methods::account_update::post_update_ldap;
|
||||||
use skynet_ldap_server::{db_init, get_config, State};
|
use skynet_ldap_backend::{db_init, get_config, State};
|
||||||
|
|
||||||
#[async_std::main]
|
#[async_std::main]
|
||||||
async fn main() -> tide::Result<()> {
|
async fn main() -> tide::Result<()> {
|
||||||
|
|
Loading…
Reference in a new issue