forked from AISViz/AISdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (33 loc) · 1 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "aisdb"
edition = "2021"
version = "1.7.3"
include = [
"aisdb_web/dist_map/assets/*", "aisdb_web/dist_map_bingmaps/index.html", "aisdb_web/dist_map_bingmaps/favicon.svg",
"aisdb/*.py", "aisdb/aisdb_sql", "aisdb/database/*.py", "aisdb/webdata/*.py", "/src", "pyproject.toml",
"aisdb_web/dist_map/index.html", "aisdb_web/dist_map/favicon.svg", "aisdb_web/dist_map/favicon.png",
"aisdb_web/dist_map_bingmaps/favicon.png", "aisdb_web/dist_map_bingmaps/assets/*",
]
[lib]
crate-type = [ "cdylib", "rlib", ]
path = "src/lib.rs"
[dependencies]
geo = "0.26"
geo-types = "*"
nmea-parser = "0.10"
sysinfo = "0.29"
[build-dependencies]
wasm-opt = "0.112"
wasm-pack = "0.13"
reqwest = "0.11"
[dependencies.futures]
version = "0.3"
features = [ "executor", "thread-pool",]
[dependencies.aisdb-lib]
path = "aisdb_lib"
features = [ "sqlite", "postgres",]
[dependencies.aisdb-receiver]
path = "receiver"
[dependencies.pyo3]
version = "0.18.3"
features = [ "extension-module", "generate-import-lib",]