advotracker_database
* initial checkin Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
This commit is contained in:
34
Cargo.toml
Normal file
34
Cargo.toml
Normal file
@@ -0,0 +1,34 @@
|
||||
[package]
|
||||
name = "advotracker_database"
|
||||
version = "0.1.0"
|
||||
authors = ["Ralf Zerres <ralf.zerres@networkx.de>"]
|
||||
description = "Database implementation used by advotracker_backend\n"
|
||||
readme = "README.md"
|
||||
license = "(0BSD OR MIT)"
|
||||
edition = "2018"
|
||||
#build = "build.rs"
|
||||
|
||||
[profile.dev]
|
||||
rpath = true
|
||||
|
||||
[lib]
|
||||
name = "advotracker_db"
|
||||
path = "src/lib.rs"
|
||||
crate-type = ["dylib"]
|
||||
|
||||
[[bin]]
|
||||
name = "new-role"
|
||||
path = "src/bin/new-role.rs"
|
||||
advotracker_db = { Path="." }
|
||||
|
||||
[dependencies]
|
||||
lazy_static = "1.0"
|
||||
|
||||
bcrypt = { version = "0.4.0" }
|
||||
chrono = { version = "0.4.9", features = [ "serde" ] }
|
||||
diesel = { version = "1.4", features = [ "sqlite", "chrono" ] }
|
||||
dotenv = { version = "0.15.0" }
|
||||
ldap3 = { version = "0.6" }
|
||||
serde = { version = "1.0", features = [ "derive" ] }
|
||||
serde_derive = { version = "1.0" }
|
||||
serde_json = { version = "1.0" }
|
||||
12
LICENSE-0BSD
Normal file
12
LICENSE-0BSD
Normal file
@@ -0,0 +1,12 @@
|
||||
Copyright (C) 2019 by Ralf Zerres <ralf.zerres@networkx.de>
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
19
LICENSE-MIT
Normal file
19
LICENSE-MIT
Normal file
@@ -0,0 +1,19 @@
|
||||
Copyright (c) 2019 Ralf Zerres <ralf.zerres@networkx.de>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
||||
of the Software, and to permit persons to whom the Software is furnished to do
|
||||
so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice (including the next
|
||||
paragraph) shall be included in all copies or substantial portions of the
|
||||
Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
6
LICENSE.spdx
Normal file
6
LICENSE.spdx
Normal file
@@ -0,0 +1,6 @@
|
||||
SPDXVersion: SPDX-2.1
|
||||
DataLicense: CC0-1.0
|
||||
PackageName: advotracker
|
||||
PackageOriginator: Ralf Zerres
|
||||
PackageHomePage: https://github.com/rzerres/advotracker/
|
||||
PackageLicenseDeclared: MIT, 0BSD
|
||||
Reference in New Issue
Block a user