-
- Downloads
Initial commit
Showing
- Cargo.lock 2380 additions, 0 deletionsCargo.lock
- Cargo.toml 13 additions, 0 deletionsCargo.toml
- Rocket.toml 2 additions, 0 deletionsRocket.toml
- src/main.rs 134 additions, 0 deletionssrc/main.rs
- src/schema.rs 9 additions, 0 deletionssrc/schema.rs
- src/visits.sqlite 0 additions, 0 deletionssrc/visits.sqlite
- templates/browsers.html.tera 19 additions, 0 deletionstemplates/browsers.html.tera
- templates/index.html.tera 20 additions, 0 deletionstemplates/index.html.tera
Cargo.lock
0 → 100644
Cargo.toml
0 → 100644
[package] | |||
name = "histogram" | |||
version = "0.1.0" | |||
edition = "2021" | |||
[dependencies] | |||
rocket = "0.5.0-rc.3" | |||
rocket_sync_db_pools = { version = "0.1.0-rc.3", features = ["diesel_sqlite_pool"] } | |||
rocket_dyn_templates = { version = "0.1.0-rc.3", features = ["tera"] } | |||
libsqlite3-sys = { version = "*", features = [ "bundled" ] } | |||
diesel = { version = "2.1", default-features = false, features = ["sqlite"] } | |||
serde = { version = "1", features = ["derive" ]} | |||
user-agent-parser = { version = "*", features = ["rocket"] } |
Rocket.toml
0 → 100644
src/main.rs
0 → 100644
src/schema.rs
0 → 100644
src/visits.sqlite
0 → 100644
File added
templates/browsers.html.tera
0 → 100644
templates/index.html.tera
0 → 100644
Please register or sign in to comment