You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
577 B
21 lines
577 B
[package]
|
|
name = "free_id"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
#httparse = "1.7.0"
|
|
serde = "1.0.136"
|
|
serde_json = "1.0"
|
|
rusqlite = { version = "0.27.0", features = ["bundled"] }
|
|
rocket = "0.5.0-rc.1"
|
|
|
|
[dependencies.uuid]
|
|
version = "1.0.0"
|
|
features = [
|
|
"v4", # Lets you generate random UUIDs
|
|
"fast-rng", # Use a faster (but still sufficiently random) RNG
|
|
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
|
|
]
|
|
|