Project start
This commit is contained in:
23
Cargo.toml
Normal file
23
Cargo.toml
Normal file
@@ -0,0 +1,23 @@
|
||||
[package]
|
||||
name = "aweblib"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[features]
|
||||
default = ["windows"]
|
||||
windows = []
|
||||
linux = ["dep:daemonize"]
|
||||
|
||||
[dependencies]
|
||||
tokio = {version = "1.41.1", features = ["macros", "rt-multi-thread", "net"]}
|
||||
hyper = {version = "1.5.1", features = ["server", "http1"]}
|
||||
hyper-util = {version = "0.1.10", features = ["tokio"]}
|
||||
serde_json = {version = "1.0.132"}
|
||||
serde = { version = "1.0.214", features = ["derive"] }
|
||||
bytes = "1.8.0"
|
||||
http-body-util = "0.1.2"
|
||||
sqlx = {version = "0.8.1", features = ["sqlite", "sqlx-macros", "runtime-tokio"]}
|
||||
daemonize = {version = "0.5.0", optional = true}
|
||||
|
||||
[dev-dependencies]
|
||||
futures = "0.3.31"
|
||||
Reference in New Issue
Block a user