mirror of
https://github.com/trailbaseio/trailbase
synced 2026-04-21 13:37:44 +00:00
After spending too much time researching licenses, my laymen understanding makes me feel that OSL-3.0 will be a better match given TrailBase's rare dual use as a standalone backend or framework. It tried to outline the reasoning in the README.md. I would appreciate input from anyone more experienced with licenses. For now, I would like to turn my attention back to more technical issues :hide:.
21 lines
589 B
TOML
21 lines
589 B
TOML
[package]
|
|
name = "trailbase-sqlite"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "OSL-3.0"
|
|
|
|
[dependencies]
|
|
trailbase-extension = { path = "../trailbase-extension" }
|
|
infer = "0.16.0"
|
|
jsonschema = { version = "0.26.0", default-features = false }
|
|
lazy_static = "1.5.0"
|
|
libsql = { workspace = true }
|
|
schemars = "0.8.21"
|
|
serde = { version = "^1.0.203", features = ["derive"] }
|
|
serde_json = "1.0.122"
|
|
thiserror = "1.0.61"
|
|
tokio = { version = "^1.38.0", features = ["macros", "rt-multi-thread", "fs"] }
|
|
uuid = { version = "^1.8.0", features = ["v4", "serde"] }
|
|
log = "0.4.22"
|
|
|
|
[dev-dependencies]
|