Init
This commit is contained in:
commit
80c523d09d
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
/target
|
1975
Cargo.lock
generated
Normal file
1975
Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
6
Cargo.toml
Normal file
6
Cargo.toml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
[workspace]
|
||||||
|
members = [
|
||||||
|
'puffball-fileye',
|
||||||
|
'puffball-pathfinder',
|
||||||
|
'puffball-sentinel',
|
||||||
|
]
|
28
puffball-fileye/Cargo.toml
Normal file
28
puffball-fileye/Cargo.toml
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
[package]
|
||||||
|
name = "puffball-fileye"
|
||||||
|
description = "WebDAV server for files"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
actix = "0.13.0"
|
||||||
|
actix-rt = "2.8.0"
|
||||||
|
actix-web = { version = "4.3.1", features = ["rustls"] }
|
||||||
|
dav-server = { version = "0.5.4", features = ["actix-web"] }
|
||||||
|
futures = { version = "0.3.28", features = ["futures-executor"] }
|
||||||
|
futures-util = "0.3.28"
|
||||||
|
serde = { version = "1.0.159", features = ["derive"] }
|
||||||
|
serde_json = "1.0.95"
|
||||||
|
signal = "0.7.0"
|
||||||
|
sync = "0.1.0"
|
||||||
|
tokio = { version = "1.27.0", features = ["full"] }
|
||||||
|
tokio-stream = { version = "0.1.12", features = ["fs"] }
|
||||||
|
tokio-util = "0.7.7"
|
||||||
|
tracing = "0.1.37"
|
||||||
|
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
|
||||||
|
|
||||||
|
[dev-dependencies]
|
||||||
|
insta = { version = "1.29.0", features = ["filters"] }
|
||||||
|
regex = "1.7.3"
|
||||||
|
ron = "0.8.0"
|
||||||
|
walkdir = "2.3.3"
|
3
puffball-fileye/src/main.rs
Normal file
3
puffball-fileye/src/main.rs
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
fn main() {
|
||||||
|
println!("Hello, world!");
|
||||||
|
}
|
13
puffball-pathfinder/Cargo.toml
Normal file
13
puffball-pathfinder/Cargo.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
[package]
|
||||||
|
name = "puffball-pathfinder"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
actix = "0.13.0"
|
||||||
|
actix-web = { version = "4.3.1", features = ["rustls"] }
|
||||||
|
cargo-rt = "0.1.0"
|
||||||
|
futures = "0.3.28"
|
||||||
|
tokio = { version = "1.27.0", features = ["full"] }
|
3
puffball-pathfinder/src/main.rs
Normal file
3
puffball-pathfinder/src/main.rs
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
fn main() {
|
||||||
|
println!("Hello, world!");
|
||||||
|
}
|
13
puffball-sentinel/Cargo.toml
Normal file
13
puffball-sentinel/Cargo.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
[package]
|
||||||
|
name = "puffball-sentinel"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
actix = "0.13.0"
|
||||||
|
actix-web = { version = "4.3.1", features = ["rustls"] }
|
||||||
|
cargo-rt = "0.1.0"
|
||||||
|
futures = "0.3.28"
|
||||||
|
tokio = { version = "1.27.0", features = ["full"] }
|
3
puffball-sentinel/src/main.rs
Normal file
3
puffball-sentinel/src/main.rs
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
fn main() {
|
||||||
|
println!("Hello, world!");
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user